diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 73ec6f6b5..c8543fa2a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,6 +5,7 @@ "workspaceFolder": "/workspace", "remoteUser": "vscode", //"postCreateCommand": "bash ./.devcontainer/post-create-command.sh", + "postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}", "forwardPorts": [4567, 5432], "extensions": [ "ms-python.python", diff --git a/Makefile b/Makefile index df317652c..afab8fd83 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ process: process.rb # todo: remove RUBYOPT variable when activerecord fixes deprecation warnings echo 'delete from calculations;'| psql $(DATABASE_NAME) rm -rf build && RUBYOPT="-W:no-deprecated -W:no-experimental" bundle exec ruby process.rb + python bin/create-digests.py download-netfile-v2: python download/main.py diff --git a/bin/create-digests.py b/bin/create-digests.py new file mode 100644 index 000000000..a4b3c50c8 --- /dev/null +++ b/bin/create-digests.py @@ -0,0 +1,114 @@ +import os +import json +import hashlib +import logging + +logging.basicConfig(encoding='utf-8', level=logging.INFO) + +def round_floats(data): + if type(data) == list: + for i in range(len(data)): + round_floats(data[i]) + else: + for key in data: + the_type = type(data[key]) + if the_type == dict: + round_floats(data[key]) + elif the_type == list: + round_floats(data[key]) + elif the_type == float: + data[key] = round(data[key],2) + +def sort_arrays(data): + if type(data) == list: + if len(data) > 0: + if type(data[0]) == dict: + data.sort(key=lambda x: tuple([str(x[key]) for key in x.keys()])) + else: + data.sort() + else: + for key in data: + the_type = type(data[key]) + if the_type == dict: + sort_arrays(data[key]) + elif the_type == list: + sort_arrays(data[key]) + +def redact(data): + if type(data) == dict: + if 'date_processed' in data: + data['date_processed'] = '***' + else: + for key in data.keys(): + if key.startswith('top_') : + # Redact names for items with duplicate amounts and last item in case the next + # was duplicated. We have to do this now because the ordering for these lists + # are undefined by the amounts are the same + last_item = None + for item in data[key]: + if 'name' in item: + if 'total_contributions' in item: + amount_key = 'total_contributions' + elif 'total_spending' in item: + amount_key = 'total_spending' + else: + continue + + amount = item[amount_key] + if last_item is not None: + last_amount = last_item[amount_key] + if amount == last_amount: + last_item['name'] = '***' + item['name'] = '***' + last_item = item + if (last_item is not None) and ('name' in last_item): + last_item['name'] = '***' + elif type(data[key]) == list: + for item in data[key]: + redact(item) + else: + redact(data[key]) + +def collect_digests(digests, subdir, exclude=[]): + filenames = os.listdir(subdir) + for filename in filenames: + filepath = f'{subdir}/{filename}' + if filepath in exclude: + logging.info(f'Skipping {filepath}') + elif os.path.isdir(filepath): + collect_digests(digests,filepath) + elif filename.endswith('.json'): + with open(filepath, 'r', encoding='utf-8') as fp: + logging.info(filepath) + data = json.load(fp) + # clean data before generating digests + redact(data) + round_floats(data) + sort_arrays(data) + # generate digests + if type(data) == dict: + for key in data: + sub_data = data[key] + datastr = json.dumps(sub_data, sort_keys=True).encode('utf-8') + + digest = hashlib.md5(datastr).hexdigest() + digests[f'{filepath}:{key}'] = digest + else: + datastr = json.dumps(data, sort_keys=True).encode('utf-8') + + digest = hashlib.md5(datastr).hexdigest() + if filepath not in digests: + digests[filepath] = {} + digests[filepath] = digest.hexdigest() + +def main(): + digests = {} + build_dir = 'build' + filepath = f'{build_dir}/digests.json' + collect_digests(digests, build_dir, exclude=[filepath]) + print(f'Saving {filepath}') + with open(filepath, 'w') as fp: + json.dump(digests, fp, indent=1, sort_keys=True) + +if __name__ == '__main__': + main() diff --git a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json index 677347fe3..c42fe7dd8 100644 --- a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json +++ b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json @@ -25,16 +25,16 @@ "total_contributions": 17530.0, "total_expenditures": 9718.34, "total_loans_received": 0.0, - "total_supporting_independent": 50172.51, + "total_supporting_independent": 71066.51, "support_list": [ { - "Total": 15800.0, + "Total": 23700.0, "Cand_ID": 1460829, "Filer_ID": "1433122", "Filer_NamL": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021" }, { - "Total": 30192.57, + "Total": 43186.57, "Cand_ID": 1460829, "Filer_ID": "1345259", "Filer_NamL": "Oakland Education Association Political Action Committee" diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index dacda452c..178a73358 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -813,7 +813,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94606" + "Tran_Zip4": "94602" }, { "Filer_ID": "1410941", @@ -824,7 +824,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94602" + "Tran_Zip4": "94606" }, { "Filer_ID": "1410941", diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index 09cc4a0de..ff4043a16 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1198,7 +1198,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602" + "Tran_Zip4": "94603" }, { "Filer_ID": "1421001", @@ -1209,7 +1209,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603" + "Tran_Zip4": "94602" }, { "Filer_ID": "1421001", diff --git a/build/_data/elections/oakland/2014-11-04.json b/build/_data/elections/oakland/2014-11-04.json index 92af51f48..66749d273 100644 --- a/build/_data/elections/oakland/2014-11-04.json +++ b/build/_data/elections/oakland/2014-11-04.json @@ -62,7 +62,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.9 + "total_spending": 107576.90000000001 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index b39b3380d..6bc904038 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -35,7 +35,7 @@ "total_contributions": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -77,7 +77,7 @@ "total_spending": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -100,7 +100,7 @@ "total_spending": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 diff --git a/build/_data/elections/oakland/2018-11-06.json b/build/_data/elections/oakland/2018-11-06.json index 346568301..2f8cb0e8c 100644 --- a/build/_data/elections/oakland/2018-11-06.json +++ b/build/_data/elections/oakland/2018-11-06.json @@ -9,7 +9,7 @@ "Committee": 954896.17, "Individual": 2649041.44, "Unitemized": 157811.78, - "Self Funding": 88464.97, + "Self Funding": 88464.97000000002, "Other (includes Businesses)": 2739121.2600000002 }, "most_expensive_races": [ @@ -72,7 +72,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79 + "total_spending": 129086.79000000001 } ], "top_contributors": [ @@ -97,7 +97,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.13 + "total_contributions": 53757.130000000005 }, { "name": "Charlie Michelson", @@ -157,7 +157,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.13 + "total_spending": 53757.130000000005 }, { "name": "Charlie Michelson", diff --git a/build/_data/elections/oakland/2020-11-03.json b/build/_data/elections/oakland/2020-11-03.json index 05260d5b5..752d2e4ee 100644 --- a/build/_data/elections/oakland/2020-11-03.json +++ b/build/_data/elections/oakland/2020-11-03.json @@ -46,7 +46,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.3032000954178602, + "proportion": 0.30320009541786014, "office_title": "City Council District 1" }, { @@ -62,12 +62,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.85 + "total_spending": 395215.8500000001 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22 + "total_spending": 340009.22000000003 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", diff --git a/build/_data/elections/oakland/2022-06-07.json b/build/_data/elections/oakland/2022-06-07.json index 65938d5fb..66c35a17d 100644 --- a/build/_data/elections/oakland/2022-06-07.json +++ b/build/_data/elections/oakland/2022-06-07.json @@ -2,7 +2,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.02, + "Within Oakland": 64425.020000000004, "Within California": 33250.0 }, "contributions_by_type": { diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index f71600820..2b8601081 100644 --- a/build/_data/elections/oakland/2022-11-08.json +++ b/build/_data/elections/oakland/2022-11-08.json @@ -2,13 +2,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.1800000006, + "Within Oakland": 2632398.180000001, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.870000002, + "Individual": 2507910.869999998, "Unitemized": 135828.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -95,19 +95,19 @@ ], "top_contributors_for_offices": [ { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Russ Taplin", + "name": "Goolshan Chinoy", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -155,19 +155,19 @@ ], "top_spenders_for_offices": [ { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "John Protopappas", + "name": "Goolshan Chinoy", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index f22bc362b..b5c4d5385 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,12 +40,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57000000001 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", @@ -55,36 +55,36 @@ ], "top_contributors": [ { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Laborers Local 304", + "name": "Oakland Education Association PAC", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Peralta Federation of Teachers COPE", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "UA Local 342", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -95,19 +95,19 @@ ], "top_spenders": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Peralta Federation of Teachers COPE", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -115,19 +115,19 @@ ], "top_spenders_for_offices": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Peralta Federation of Teachers COPE", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index 129d54647..7c5155407 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -49,19 +49,19 @@ ], "top_contributors_for_offices": [ { - "name": "Weylin White", + "name": "Courtney Dykstra", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Todd Scanlin", + "name": "Dow Terry", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Jacob Zonn", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -72,7 +72,7 @@ ], "top_spenders": [ { - "name": "Todd Scanlin", + "name": "Courtney Dykstra", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -84,7 +84,7 @@ "total_spending": 1800.0 }, { - "name": "Brooke Levin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -92,7 +92,7 @@ ], "top_spenders_for_offices": [ { - "name": "Todd Scanlin", + "name": "Courtney Dykstra", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -104,7 +104,7 @@ "total_spending": 1800.0 }, { - "name": "Brooke Levin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 diff --git a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json index 3545badf5..3459ca5b1 100644 --- a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json +++ b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json @@ -12,7 +12,7 @@ "locale": "Out of State" }, { - "amount": 358697.33, + "amount": 358697.32999999996, "locale": "Within California" }, { diff --git a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json index 09d32d278..89f2eb9a3 100644 --- a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json +++ b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 4712.72 + "amount": 4712.719999999999 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json index 46d4ef086..82cec1678 100644 --- a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json +++ b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 268387.34, + "amount": 268387.33999999997, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json index 51b29c33d..9b549ce47 100644 --- a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json +++ b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json @@ -31,7 +31,7 @@ }, { "type": "Other (includes Businesses)", - "amount": 536197.67 + "amount": 536197.6699999999 } ], "supporting_organizations": [ diff --git a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json index 1d3119431..7cf930aeb 100644 --- a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json +++ b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json @@ -8,11 +8,11 @@ "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/measures/measure/4174?cty=ca%2falm", "contributions_by_region": [ { - "amount": 20632.65, + "amount": 20632.649999999998, "locale": "Out of State" }, { - "amount": 211479.95, + "amount": 211479.94999999998, "locale": "Within California" }, { @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 81245.58 + "amount": 81245.57999999999 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json index cb9825b0e..ec6b68623 100644 --- a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json +++ b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 64425.02, + "amount": 64425.020000000004, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json index 2647a566c..6baad7e5f 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json @@ -12,11 +12,11 @@ "locale": "Out of State" }, { - "amount": 423379.49, + "amount": 423379.48999999993, "locale": "Within California" }, { - "amount": 121350.01, + "amount": 121350.01000000001, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json index 3b591e414..71e4e5cb5 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json @@ -8,7 +8,7 @@ "voters_edge_url": null, "contributions_by_region": [ { - "amount": 155830.48, + "amount": 155830.47999999998, "locale": "Out of State" }, { @@ -23,7 +23,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 160125.09 + "amount": 160125.08999999997 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json index a90083411..ea5788747 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json @@ -19,7 +19,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 54133.42 + "amount": 54133.420000000006 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json index ec05b4255..22ee80333 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json @@ -23,11 +23,11 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 455370.23 + "amount": 455370.23000000004 }, { "type": "Individual", - "amount": 7164.06 + "amount": 7164.0599999999995 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/stats.json b/build/_data/stats.json index ed4ccf74d..687aadd1b 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-01 00:07:25 -0700" + "date_processed": "2023-11-08 08:07:22 +0000" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 8055f0884..d341766e6 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -96,7 +96,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.9 + "total_spending": 107576.90000000001 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", @@ -399,7 +399,7 @@ "Committee": 954896.17, "Individual": 2649041.44, "Unitemized": 157811.78, - "Self Funding": 88464.97, + "Self Funding": 88464.97000000002, "Other (includes Businesses)": 2739121.2600000002 }, "most_expensive_races": [ @@ -462,7 +462,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79 + "total_spending": 129086.79000000001 } ], "top_contributors": [ @@ -487,7 +487,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.13 + "total_contributions": 53757.130000000005 }, { "name": "Charlie Michelson", @@ -547,7 +547,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.13 + "total_spending": 53757.130000000005 }, { "name": "Charlie Michelson", @@ -631,7 +631,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.3032000954178602, + "proportion": 0.30320009541786014, "office_title": "City Council District 1" }, { @@ -647,12 +647,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.85 + "total_spending": 395215.8500000001 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22 + "total_spending": 340009.22000000003 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", @@ -782,13 +782,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.1800000006, + "Within Oakland": 2632398.180000001, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.870000002, + "Individual": 2507910.869999998, "Unitemized": 135828.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -875,19 +875,19 @@ ], "top_contributors_for_offices": [ { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Russ Taplin", + "name": "Goolshan Chinoy", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -935,19 +935,19 @@ ], "top_spenders_for_offices": [ { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "John Protopappas", + "name": "Goolshan Chinoy", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 @@ -1011,7 +1011,7 @@ "total_contributions": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -1053,7 +1053,7 @@ "total_spending": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1076,7 +1076,7 @@ "total_spending": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1087,7 +1087,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.02, + "Within Oakland": 64425.020000000004, "Within California": 33250.0 }, "contributions_by_type": { @@ -1353,12 +1353,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57000000001 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", @@ -1368,36 +1368,36 @@ ], "top_contributors": [ { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Laborers Local 304", + "name": "Oakland Education Association PAC", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Peralta Federation of Teachers COPE", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "UA Local 342", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1408,19 +1408,19 @@ ], "top_spenders": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Peralta Federation of Teachers COPE", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1428,19 +1428,19 @@ ], "top_spenders_for_offices": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Peralta Federation of Teachers COPE", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1501,19 +1501,19 @@ ], "top_contributors_for_offices": [ { - "name": "Weylin White", + "name": "Courtney Dykstra", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Todd Scanlin", + "name": "Dow Terry", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Jacob Zonn", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -1524,7 +1524,7 @@ ], "top_spenders": [ { - "name": "Todd Scanlin", + "name": "Courtney Dykstra", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1536,7 +1536,7 @@ "total_spending": 1800.0 }, { - "name": "Brooke Levin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1544,7 +1544,7 @@ ], "top_spenders_for_offices": [ { - "name": "Todd Scanlin", + "name": "Courtney Dykstra", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1556,7 +1556,7 @@ "total_spending": 1800.0 }, { - "name": "Brooke Levin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 diff --git a/build/digests.json b/build/digests.json new file mode 100644 index 000000000..1ef46a499 --- /dev/null +++ b/build/digests.json @@ -0,0 +1,6613 @@ +{ + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:committee_name": "ea153153465a8c620a955a64fb611b06", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:filer_id": "8e8ad862f691025ec7354e24c107d1e7", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:first_name": "58e80c59ff668736fe3b081db3cabb35", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:id": "140f6969d5213fd0ece03148e62e461e", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:last_name": "b47896380fbf0efd194b42ab5841df65", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:name": "3bafca4830eb6221ef7507093c554607", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:supporting_money": "d9b6ec17e26ef54b16c3473825b59531", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:total_contributions": "082faca47cae809362a0d275e31000e6", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:total_expenditures": "dcf81151131913632e39565f0ef7a392", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:ballot_item": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:committee_name": "e84de7ea00a9371baf21f9f06ccf5098", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:filer_id": "c928870e6473c792dc4629ad86611c80", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:first_name": "0deeae9807fcf53cfeedabacebd3a333", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:id": "9dcb88e0137649590b755372b040afad", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:last_name": "f41a4b9260715c02bed739317a362f9f", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:name": "b3c8327c721ad8cf3972fa59fe240fe8", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:office_election": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:supporting_money": "2875f1481a11d60fd2b0a715d596826a", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:total_contributions": "e2fb590ebb89b48fc98c8a40795c1bb9", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:total_expenditures": "25fe00534f448f2c3381fe380f9e6409", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:committee_name": "38e1c10070d67fdff4ffd67bbf98cbc8", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:filer_id": "3487b5d011e803d5200e715c07209e00", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:first_name": "64706307948491ce91e61e7fb1c16607", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:id": "b73ce398c39f506af761d2277d853a92", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:last_name": "888ae4ca0478048f12fa4db2deb2c399", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:name": "8bb24ba9079b9dcb2a59766952876314", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:supporting_money": "2265bdae3ce72147d15b899214b90235", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:total_contributions": "a638c17b802ccfa5bdb9b22a5bc625f7", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:total_expenditures": "2d9bad16ab845b50506bddd6627a5a30", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:committee_name": "3a42f68eba8b3a56e4076a317807fa38", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:filer_id": "7a05987f143ad53ed4993eeba150038c", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:first_name": "c3e658d178d8b5aec4ac699a8eb78246", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:id": "0777d5c17d4066b82ab86dff8a46af6f", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:last_name": "d9b723f7c97cdd104eac92ca8e522eae", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:name": "1040e1eaf0afb1a73b6ae2ebd403db3e", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:supporting_money": "ab54a545f6789387c3cdf2073402a810", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:total_contributions": "37e97a208fd324b05ff76d69be98381e", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:total_expenditures": "56a095eb0a87b44fb38b3d5cc4340059", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:ballot_item": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:committee_name": "399420c13642106d0a584e634f083995", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:filer_id": "56893f2d5aa7437c9772c98a23f98701", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:first_name": "5b7b210c9745c38af3b2ee6f14b911c9", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:id": "6c4b761a28b734fe93831e3fb400ce87", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:last_name": "d4f6e90d74d6b45b2d88f6edaf5470d2", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:name": "d9911ee528c99cd5789e366d1658d5b6", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:supporting_money": "df4fb24802ed66740e2700b789159d2b", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:total_contributions": "c5bc74f9af6ce2c1d2aad41363abfe47", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:total_expenditures": "450eca7d6ab92ab66307582f12d204fb", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:committee_name": "e32ed6b555444bb359324bfbfe9897e0", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:filer_id": "8b5e0d79ae00b7070eb1246e8187feea", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:first_name": "f201fcd945896d2561bee2f60a306b0d", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:id": "8f53295a73878494e9bc8dd6c3c7104f", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:last_name": "d46c91d72e60197bfd4fd01d0e7341ac", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:name": "62cf42ff63e6044ad6c96da7dfa55a2f", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:supporting_money": "ff0b0b3f909056ee1b87449482ed53c2", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_contributions": "3f590ec68ea817ed4bc67bcfed6f0571", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_expenditures": "2344b3dcee2084b99b8f20e6597eb2d7", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:committee_name": "3bcd66fc0de33aa52aafe0a4b7d35e93", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:filer_id": "a800439b48386c35e7e8fdbb1eba61bb", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:first_name": "5f2307d8426a1e8e93c35749563230c0", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:id": "bf8229696f7a3bb4700cfddef19fa23f", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:last_name": "f7876962086c7eac2015bd0afa8d6c70", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:name": "09ee4270a18428ae375b17897df79cc6", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:supporting_money": "c662cbd448735429cac64c70b10f5e4c", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:total_contributions": "6ac2367efb8d9ad844b580ed0c82395e", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:total_expenditures": "556ad383d30253735e8fb3db2ba910ae", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:ballot_item": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:committee_name": "2a8eb953de4d43714f34a10bcc309be2", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:filer_id": "c9f1c5bb9af1bede8a08e2a5a08c9049", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:first_name": "613338027f066ce9b2bbee3598597489", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:id": "0aa1883c6411f7873cb83dacb17b0afc", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:last_name": "b4728288ac79c6db1c3b93392f25fb2a", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:name": "22c2a747501eaf822df16ebb83372197", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:supporting_money": "3bfebbf878203c92a71b0b87acc3cf4b", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:total_contributions": "fca67ec5a508a2eaad503e88a2f6bc0e", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:total_expenditures": "d0f601414ddd0982df8a68f98a6eecfc", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:ballot_item": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:committee_name": "4b20f27902285268ab3f8bde09e46236", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:filer_id": "8dbb1eb62550cff4f3c6f2b2639ec454", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:first_name": "8b1756819415ff0877812908c4a34081", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:id": "084b6fbb10729ed4da8c3d3f5a3ae7c9", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:last_name": "f7d1c2e44fc9cc01deebb2c925e720f5", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:name": "b985b1cfd6d248381a61d10a35808b20", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:supporting_money": "7148c4732f5e679e2172179eab04178c", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:total_contributions": "9ca518dc0b3789adb8ad93efa4978101", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:total_expenditures": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:committee_name": "eea14d36d7164bcc899c43f21c66de7f", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:filer_id": "7d0ac7d7af531c966377a6dea2de2b91", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:first_name": "ab8a182f2d0653ad50201abb0642da19", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:id": "82161242827b703e6acf9c726942a1e4", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:last_name": "2f8915db98fc7aaf70caca4df9ecdc6d", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:name": "76884662ac75e9979f6b9b68f6426a1b", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:supporting_money": "8bef800fd7d749c2cda4ba308c26d354", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:total_contributions": "00133fb4506365486c4863e40cbfcd33", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:total_expenditures": "5b3bd9a97ac26e26ac9be11c8422ccb0", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:committee_name": "8bf2dd22d78583b1382d84b0f6cb27b0", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:filer_id": "bdf3cd510c8a31c13cbd60995f7af44f", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:first_name": "97217fc96ce17bb2854a609afd8f17d5", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:id": "38af86134b65d0f10fe33d30dd76442e", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:last_name": "3e218ff1eab2d7d79598b5e9573ad182", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:name": "4a206a603d548ae4cfb5ea0f5a00a724", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:supporting_money": "f91667805e2ab6a11d0e91c519546827", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:total_contributions": "219480e29adeb9663bddd9830f0d5716", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:total_expenditures": "f0a9953fc28b9f89c4411bb31a1d86b3", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:total_loans_received": "d95c7d2a8ec24efc5f9c4fd2bc749ac8", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:filer_id": "a870b338987ab5fe1504604d48630648", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:first_name": "47e0d0ae1f0b307f041ebea81f4484c7", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:id": "bd4c9ab730f5513206b999ec0d90d1fb", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:last_name": "179682a4344e2ec8681e9946465725f6", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:name": "8141c520652fc3c573e60d6508ca685a", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:supporting_money": "8218692c65de799191ca34c526996ffa", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:total_contributions": "071a9e329f5738272cddf361884c44b4", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:total_expenditures": "b07960cc231ecad12d0f83c6625b0282", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:committee_name": "aafc58d454e9fda5807cb708d76e9d71", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:filer_id": "1144e35a6b4bba43aaf589f21128062f", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:first_name": "b2d2f8b081155182f6a405a050ed3d36", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:id": "149e9677a5989fd342ae44213df68868", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:last_name": "ce7678a76a51a9d24e5cf8c739677209", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:name": "fe2bf21862b0e32634ffbaf4ac782bbe", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:opposing_money": "afeab789ccc69cdb3b75b061a1bd373a", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:supporting_money": "84998849de00ad3f4251583e9d86f3c9", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:total_contributions": "024e75cef6773424611c007cab9d1192", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:total_expenditures": "7b54012864c6802638fceaf0480798d9", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:total_loans_received": "5bb7dc071fa1605554ebc7f4308a067e", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:first_name": "41dc236f077b467117e119f9d886ac39", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:id": "31fefc0e570cb3860f2a6d4b38c6490d", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:last_name": "507d7960a8b8a1dd944d49bbc71e9eae", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:name": "6ac1046830bc17c3d2ae469f93fb1870", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:committee_name": "530154f197173dde64d4db74ec63494c", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:filer_id": "cd32dc404b46c412cc18f7cabcabc980", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:first_name": "d2aa80c88e313a0ac86cef37fc483b2d", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:id": "5878a7ab84fb43402106c575658472fa", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:last_name": "e08a30b810a20901c5e339eabf995538", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:name": "c4b1f5bd9c64853862922d4dfeeec964", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:supporting_money": "bb9695eae1425746d8d3a86004a5badc", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:total_contributions": "862f1dc543ea801e31f7bc380da448a4", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:total_expenditures": "b163b3d1726debf59d3cda74a863f4db", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:first_name": "9406d5640839d5bfb785ea52ca600610", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:id": "fc221309746013ac554571fbd180e1c8", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:last_name": "47b89cf562132097094dd220eed74548", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:name": "fb70326ee47f4bdfe60d92815dd6fe53", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:committee_name": "556bc91733ede5b07e0e0e25aab3f853", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:filer_id": "f81f494d3e69183c3a3f43d4fb60f8c6", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:first_name": "2aa93fbdb5b73d6497bce83437d0c73c", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:id": "045117b0e0a11a242b9765e79cbf113f", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:last_name": "86638c6dfe7b4c51b1a78ce7a2614d3e", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:name": "890dc099a1f9812c9e380e63b0ea28a2", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:opposing_money": "c3f9c653ab0abd1f0346d430cfbec2ba", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:supporting_money": "98da72233199abd807372b34b912df18", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:total_contributions": "1bcadc9f4a165545774427a630dbc706", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:total_expenditures": "2910790a3367f70218e6b37a56188082", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:total_loans_received": "b3eee4200b16fd807d553207fc3a9ce4", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:committee_name": "666dbc0d473a3a693477ad06929eaf4c", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:filer_id": "72d560fda5203a7c732fdbb01c12b06d", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:first_name": "6de6aa92f39599ac79d79dc7b5cc4e59", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:id": "9766527f2b5d3e95d4a733fcfb77bd7e", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:last_name": "d05778e9e3bdbe6a99d1bc1d33f916ec", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:name": "98939522234435cff26b2c844d69f83e", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:supporting_money": "9ee525fbcf26a2362ff48ff9996559ee", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:total_contributions": "85a911b93559ce88ca922cd880328242", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:total_expenditures": "5564574727d06f14a50c8451fc43ed11", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:committee_name": "827b027d44e0491bce737698390559cf", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:filer_id": "673cc3dfc090412d64201c4cc2a58dea", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:first_name": "55f6507b8e39426e7d559db45ab1fdd0", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:id": "8f85517967795eeef66c225f7883bdcb", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:last_name": "0dabd5a6480d8b9495d22c5fb8eb0421", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:name": "adc6ac3747e1dbabf1d8c1d240f06d2c", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:supporting_money": "d0bafa75cad4862f8ca539bad8324fa3", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:total_contributions": "83ac9251889f4d988b7ee8a79e48fa66", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:total_expenditures": "d7261decbdc6e540258223092a96439c", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:total_loans_received": "292f6c757f81f418aa1fc5a59ffb2b2a", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:ballot_item": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:committee_name": "862bc653828a968eb6e0e8bf6eca8be6", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:filer_id": "8751ffa858ddb169c16505b11e488d99", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:first_name": "4d825385fab81b82869e3096c6259507", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:id": "58a2fc6ed39fd083f55d4182bf88826d", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:last_name": "c50f0bbfaee565636ec0106963a5e109", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:name": "74b10897a07570a9a6c87225cee380a9", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:supporting_money": "ca245cf5833462c261f0503059c9b5f1", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:total_contributions": "f9e26572e10a4889b1dacbb9bee5429f", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:total_expenditures": "c298e120ecb9560c7456abe4e42c2409", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:total_loans_received": "2d16feb509828657b56904059a3b71c7", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:first_name": "05ab84aa487a4a41c0f0d540d0e081b3", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:id": "4c5bde74a8f110656874902f07378009", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:last_name": "0df223e49801aaebafd6db1d4b93dfa2", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:name": "b751a99fdd99b0b8391218f916449659", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:first_name": "05ab84aa487a4a41c0f0d540d0e081b3", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:id": "82aa4b0af34c2313a562076992e50aa3", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:last_name": "c662f461432835dd57b9465e9daed4e0", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:name": "aa94c67efec88209cec9c407b9ff2313", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:committee_name": "9289daeafcfaad0cd24196c4eca069f1", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:filer_id": "f1a006073fd86b698a227b6be4d25a30", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:first_name": "f37a25f5bf0f21f2347f7375591bead5", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:id": "06409663226af2f3114485aa4e0a23b4", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:last_name": "5c5e8321ba4a4371378532cab44278e6", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:name": "7520aaa39e242642d26bce0e4b03f636", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:supporting_money": "2d5181877a82e30cc90d587aae67b2f8", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:total_contributions": "4c906371412034365de6f0e906514e32", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:total_expenditures": "3483c0e049b86aec7d621b3852bffda1", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:total_loans_received": "6febd8047eb9ddc4d9caf141403a586a", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:ballot_item": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:committee_name": "468efe7c067f9a31eaab1781213ef9ae", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:filer_id": "ad62172270e86294e400388893fcc4ce", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:first_name": "8d88065c45a3bc6993527551bae8a4e0", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:id": "1c9ac0159c94d8d0cbedc973445af2da", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:last_name": "4c6fbdaa76f8668de3e6bdf88b4c04c9", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:name": "bfe450b9bdc461f4ca1fdbe890596dd0", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:supporting_money": "f55db40929515d6ad4c4afe3ba567195", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:total_contributions": "c1a57a5b12dd4f797a8538ee802814ef", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:total_expenditures": "71420ba02f4d1b5fe57de9acc0c36759", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:committee_name": "fd761039e35420da02a35586305d4d88", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:filer_id": "b3ec5a47634eb746712a7c8f4dd6c693", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:first_name": "5fdfe865a8a642805fe20b6b0df7500b", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:id": "96da2f590cd7246bbde0051047b0d6f7", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:last_name": "37541a9ac0ebbe554fa4934ff98ebedf", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:name": "378a3e0cfa58d0d874e68866132769af", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:supporting_money": "856f6e6327f85975b4b1a8b87f575d7f", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:total_contributions": "590a9bf90bc62795cb658ec8841620c6", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:total_expenditures": "5d402664034d8114a6a8b20199e8497e", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:total_loans_received": "d2fd3a26fd8cb522144c351c806d612d", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:committee_name": "2755561c465899a5b6d74269bd17a70a", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:filer_id": "b98033ce547e8041bd86a5bc882695a4", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:first_name": "a9c6fb6cd623935d1bc88a0b86197e8f", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:id": "3636638817772e42b59d74cff571fbb3", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:last_name": "d42ed0760daf032d0ef96c934d0cf82c", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:name": "acd5e6f23fe8dd524cc270b1682ae049", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:supporting_money": "09fb748405487dc6d2d01fb19e283545", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:total_contributions": "5d4d3cfc5ebd652fa18b0aea46797b41", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:total_expenditures": "db265a4f11d64cd6d36d599989a9ccb2", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:total_loans_received": "a2991bf4cd2d8ddad0db43376e9d9fab", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:first_name": "3265bf9ee3078d31e343fe37846955c7", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:id": "eecca5b6365d9607ee5a9d336962c534", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:last_name": "5825289e3c17b90c8a9431cfa73baceb", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:name": "33f6b74cdf3f39b3a61cf14a3ff0d4c4", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:committee_name": "b2cc450ed2534eed8ebca1accc0d7c05", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:filer_id": "9a1c790a06854724bc900f4ed66eafea", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:first_name": "a8d00303faba8d41c15659cd08acc111", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:id": "fa7cdfad1a5aaf8370ebeda47a1ff1c3", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:last_name": "94c4224f7b3210054bbf5095186d92f0", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:name": "8a20692e2c8a8d44ab450cac57daccc4", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:supporting_money": "bf65ff5fac3f5371efdcf8aebd057566", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:total_contributions": "f34e5e754e1562243b15dd0fe2d07110", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:total_expenditures": "f34e5e754e1562243b15dd0fe2d07110", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:ballot_item": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:committee_name": "665a935f76bf3140e314ebac3b190eb3", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:filer_id": "1c4538db121048b6678509556dfbe9ad", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:first_name": "2c4f2aa76e221792a6725f88bee55356", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:id": "cfecdb276f634854f3ef915e2e980c31", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:last_name": "7dc0cb51192db98abbb893c6d3eac95a", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:name": "790246bb98609572c65568c5f82520f3", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:supporting_money": "eab277c173799ee72b0cdccab9ed7125", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:total_contributions": "c0114e37ad64730670df71698a8242b4", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:total_expenditures": "62f63d50f833a7d096922d8c40bc0eef", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:first_name": "1083aa6cb74cf3b565de71052ae528a2", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:id": "6cdd60ea0045eb7a6ec44c54d29ed402", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:last_name": "3b564ae0565f208605f2683d14c23b19", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:name": "dfc6bbc22954b35bbc426844b61c61de", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:first_name": "caaae0752097fe5cfaa59dac82950c23", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:id": "7e7757b1e12abcb736ab9a754ffb617a", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:last_name": "37ef3e4973ace20c842e3454d5958470", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:name": "db4aa076aedbf15892b09756f081afa3", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:first_name": "c1d4fd6a56b5dee2ed294110790e81ca", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:id": "cedebb6e872f539bef8c3f919874e9d7", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:last_name": "86d4a896a195c8f7a6a9f132654b0766", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:name": "50cbacf626cd9b94c665da7e3887e23b", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:filer_id": "f1ab754c6c470a372be6248cfd56a65f", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:first_name": "8b450e64baee8642ec79f32a99444144", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:id": "f7e6c85504ce6e82442c770f7c8606f0", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:last_name": "2d9943cd802bedb8c14d8b0251444656", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:name": "2e2e05a62560df239578c47adfeeb68c", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:opposing_money": "deb7f587d3e85f223f9ecdd661921713", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:supporting_money": "d5c0ec70e3491e4ea1b7ed0e92ba6811", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:total_contributions": "6de62951634412781c85e659183a030a", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:total_expenditures": "c5ac2ff1bc3a261070ade927fdbb0a68", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:ballot_item": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:committee_name": "9bdae32d9087dae21a8ce5d6a7e88935", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:filer_id": "025dba70b14c41266dc7b0baf6390c8d", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:first_name": "40a40df3bb50a4f9c0c6e937db7ec091", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:id": "a597e50502f5ff68e3e25b9114205d4a", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:last_name": "d554795551f76ef60360ffb465bd9047", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:name": "5e6145e1a07991542b53976fa219407c", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:supporting_money": "b7021f0d20d2fcc2bd1d40bb95680773", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:total_contributions": "a16606143224fb22a4c18d4a675cd144", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:total_expenditures": "1ca579c7718d56aae33e419b91e54a8d", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:committee_name": "8ab35e4fad52df4c35989b178fcc4426", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:filer_id": "62a7f775889467456fc0c098ef88c09e", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:first_name": "dc5e9f9bea6a7a49ed46fc4362186c57", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:id": "1ff8a7b5dc7a7d1f0ed65aaa29c04b1e", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:last_name": "31fde660129575b36fad64911f1f9189", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:name": "39fe6bd8794e8cb4adf6d497a96472aa", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:supporting_money": "6cee454c8b46848ef0259360c7e97e86", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:total_contributions": "751d535c33b53ce0f7799cc00ee6b62a", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:total_expenditures": "751d535c33b53ce0f7799cc00ee6b62a", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:ballot_item": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:committee_name": "1af81131becc460cf589c5f811de587b", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:filer_id": "5f1cc9972d2dc5e7c2c89358ec8d085b", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:first_name": "ca90f0331afd54ddbd2cf0eb096736b2", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:id": "bd686fd640be98efaae0091fa301e613", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:last_name": "ffba034646ae8a34a54122d1e9da8ec6", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:name": "f8bf69645879afcf194e1d23e08d3dba", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:supporting_money": "0e9ecad500955aadf19f0d0431cf509e", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:total_contributions": "17421381dd62c92a4c07021481fa1c09", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:total_expenditures": "65e3b3b92a7010c253bcffc5b6f2ce8c", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:ballot_item": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:committee_name": "c73fedb55baaa9969e916d1bd0083cdf", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:filer_id": "435db7f3d9d93812bd9f94b034391384", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:first_name": "3d6a850e9cbc445ef503a5a16e59c83a", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:id": "0336dcbab05b9d5ad24f4333c7658a0e", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:last_name": "6d9e72ef188c42b2b2a4161de1754ca0", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:name": "0f0f9afac3485860904c106d2b1904cc", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:supporting_money": "b34ce03d0ac8eba67b3c436c4d867f4b", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:total_contributions": "fb6ec7eabead091164b2c9c19d319267", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:total_expenditures": "388a951a8f7d4a36030f9ebf39bfac3d", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:committee_name": "2df94d8acfe6c977426f69e7fa5b4bca", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:filer_id": "6751428af37bbebc15f4ce8d0bc981f2", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:first_name": "0244df5d4fa8704d876ae852ed692b31", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:id": "006f52e9102a8d3be2fe5614f42ba989", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:last_name": "179777116064ce8be493f274be605c84", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:name": "04e68149a40fff77be1c7b3c72c8629f", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:supporting_money": "142063d2dd96e5dacc5cf77f3670823b", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:total_contributions": "51e795c60504258488afd0af620473f8", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:total_expenditures": "efc9eb2795c0437c65fe2a935f9ef948", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:total_loans_received": "0a80f303497fb3303668fc5dee39b784", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:first_name": "03297dfadba82138dc97ad8001d3e39e", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:id": "9872ed9fc22fc182d371c3e9ed316094", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:last_name": "9c9f7fa6593af1ab558408fd1858960a", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:name": "6d33a4a9091e4cb65b78a092d83c3604", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:first_name": "a06bccde8009dd988f744ac636a089d2", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:id": "a4a042cf4fd6bfb47701cbc8a1653ada", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:last_name": "d011df8af45e6e2d84371f937538ab42", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:name": "f0e7ed2a32eae0b54e27ed4a8f8b0950", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:ballot_item": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:first_name": "9519afa1d393edc9584cff9e59386605", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:id": "a2557a7b2e94197ff767970b67041697", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:is_incumbent": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:last_name": "791b925e712ecb1462096f855461633a", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:name": "e9f4c9366ab2790915ec351cf3fc77ad", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:office_election": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:ballot_item": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:bio": "77dfb7dac44e0475f4ff429d1acdaefc", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:committee_name": "2077f3033e988dcfb3fe418a75334b83", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:filer_id": "91748531404dcc84c2ed16e2b341b7c3", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:first_name": "ba6e9256c04637b7be5706a628d32b18", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:id": "d1f491a404d6854880943e5c3cd9ca25", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:last_name": "d46c91d72e60197bfd4fd01d0e7341ac", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:name": "4dba965c979b2df0e4ba4022fe4b2e6e", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:occupation": "5987f9ee30f2809ef6b1788aa9fdefce", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:office_election": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:photo_url": "37eb7c553c25a5903e583907f66274e7", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:supporting_money": "73ae64bfd006cb1504ef4e9b0e8381a2", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:total_contributions": "41e27b7c0365570980b4318344d0ac33", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:total_expenditures": "47c4a116d5aedd90c19527a8faf8c15e", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:twitter_url": "cbcc4d74abd237b937c966898da97ce5", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:votersedge_url": "4099bfa57537ef7fb87701194b5683ed", + "build/_data/candidates/oakland/2016-11-08/barbara-parker.json:website_url": "6874b38db9b776ce2ae55befd31c5ab1", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:bio": "75eac2c13ebe592ca037ea4f29a4864d", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:first_name": "e146ec01c28e3a40f94915e592825b0f", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:id": "47d1e990583c9c67424d369f3414728e", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:last_name": "855aaba5f2a7733df272604a2b8427df", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:name": "f49c09cc87c513166602c9c38f5178e7", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:occupation": "bbb550d9b76355e3878517c31bf858e5", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:photo_url": "a98b57890b376ea1a5c69b3485d80270", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:votersedge_url": "0e4b92780417bd63eaecfda17750303a", + "build/_data/candidates/oakland/2016-11-08/benjamin-lang.json:website_url": "dfcc48b3a9d66a43fbf44a5c2cc43ae6", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:bio": "99163655872d444c2e2e30a07bc1aefa", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:committee_name": "6ae8211a9a0613811072f44f4b3c3e17", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:filer_id": "31bf2aa0b71a3ba2560a3aaa8ffa305a", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:first_name": "711c3beaf7e7d7487dbe9bf138641e87", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:id": "65ded5353c5ee48d0b7d48c591b8f430", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:last_name": "86638c6dfe7b4c51b1a78ce7a2614d3e", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:name": "858ea1e97f35d54ff5541d1a75853569", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:occupation": "a4f165b63eaa9551ae04bf38e954ecb9", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:photo_url": "daae19de008671cd53ae91ad23c19727", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:supporting_money": "9fa11961b1643776e3011041a9eec18c", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:total_contributions": "6a02febdf23abc51db559e80d08fd807", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:total_expenditures": "05c31df39043b6c3836969ca618b03c9", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:twitter_url": "4a0c4ca704b158b550b3d84f56e92fbb", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:votersedge_url": "fec675915b4bf407d7bf9b7ac1d52a3b", + "build/_data/candidates/oakland/2016-11-08/bruce-quan.json:website_url": "a4a57adb3dcb246308ff01c86c6de363", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:bio": "cc77b9a61435e4b8210e9ab4a953129e", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:committee_name": "acb50daefdc8934d3da8029c78934773", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:filer_id": "2b1da07c2df2f0460e1fe5c8200ed930", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:first_name": "d0dc964bdf6da80997be15b7351a4ba9", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:id": "2a79ea27c279e471f4d180b08d62b00a", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:last_name": "0b14463856b04e6ebfdb8e3528aedfad", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:name": "950963f95c7e554a3449916daa5c5821", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:occupation": "b25f5796e0283d89027e59394333241e", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:opposing_money": "d8e6a704a580b21466c376a5a367c4b2", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:photo_url": "8e360c27f70e58e05cb947b358d50154", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:supporting_money": "99e8b093feb9853b471b44e4c82f2b82", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:total_contributions": "07e8c57b54340f71336ed8cb0b133f8f", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:total_expenditures": "dfeeb6af3d9342395fe06535c267093e", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:twitter_url": "ff2cbbcd686fc778eb41775c336237cd", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:votersedge_url": "14feb4b4a143a90be1616706df518e82", + "build/_data/candidates/oakland/2016-11-08/chris-jackson.json:website_url": "ef6fe0a903ff2e004ddbe5befcdf4f02", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:bio": "7ef9aab72a7708b2d4db789210d5c533", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:committee_name": "9ab64e19ba283e406ebd8f9d87ca8ee9", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:filer_id": "59243d183de4d19f406cc926238a2895", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:first_name": "97217fc96ce17bb2854a609afd8f17d5", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:id": "42a0e188f5033bc65bf8d78622277c4e", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:last_name": "770eec4e8d02dd8ef43b833c4663a5e8", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:name": "1854bc4752250670af3f18312033a8e4", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:occupation": "859e771fe50c536bb6c9d62038a7bfd1", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:opposing_money": "ca8a089c0667c3fe760f7a4e8d6fe864", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:photo_url": "54144d4cae9485b9c264b02150a27c5b", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:supporting_money": "453f11999d089545e1e709418ec2a6e7", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:total_contributions": "a8e98f4ba480c5b1d47f9598a5a5da73", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:total_expenditures": "ac98af909d0e95326df55b11e6317e3a", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:twitter_url": "1ccdbb675aad47ee0708ac68b519e738", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:votersedge_url": "db4a7c478c5c4c424dcf75673c90f79d", + "build/_data/candidates/oakland/2016-11-08/dan-kalb.json:website_url": "07c4437c039c211546e7c9c889280018", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:ballot_item": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:bio": "d72d1e0911db781914b4a166004b7052", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:committee_name": "2dd25ee56030b17e924af14e26dd9e56", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:filer_id": "651ab0c7435f47139d9cbccfba078d78", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:first_name": "82a1d1fb02f925c82889232a81821b41", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:id": "0a09c8844ba8f0936c20bd791130d6b6", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:last_name": "aef7dc7b1034eaadd4076b8f167df6ea", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:name": "f422d0b09273f2e33486ac8cdbd2740a", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:occupation": "6e4912e6cec57ef3e23a5525b0418500", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:office_election": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:party_affiliation": "2f69e218ed8d862d54af4dfa5c19c3ef", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:photo_url": "c145eba17ffd8aa2f8883a85025a0c96", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:supporting_money": "15df36512f4832888abf0e76f6e365a4", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:total_contributions": "6fc9238124dd1340956538c45af88e58", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:total_expenditures": "b1ded37affbe495fc3276fe497633330", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:twitter_url": "1dd8956debdd1ba66feecd3d5b79c90c", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:votersedge_url": "9a7c6fa21e091d8a23838dc667ff4e7f", + "build/_data/candidates/oakland/2016-11-08/donald-macleay.json:website_url": "3032e1537c3e1636f017439f163f0c70", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:bio": "e2dfaa62514f6ada36c292842f1175be", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:committee_name": "73b70b77768bc4e637f575963ebb2eac", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:filer_id": "3be89002c88e41c3ad6edbb2058f75a9", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:first_name": "5ce094e98252ca2604cb9dc753982daa", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:id": "9b8619251a19057cff70779273e95aa6", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:last_name": "8b08eb365c352f43f5131d620e0907f3", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:name": "6345a9b93292fa69d6d504a1727cbde0", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:occupation": "f605b951fa6922b75642a4becf955b32", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:photo_url": "559710eb76ea3f1718c089ac267102c8", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:supporting_money": "1d4e8affb4c9a0331829d7a4ab927710", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:total_contributions": "3ce2d44ac34b0ad717cf139b4c65b098", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:total_expenditures": "7acedb24ea0ebaf1a7fdde5012b99a69", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:votersedge_url": "db44573e5f5a67a926a8998b437c1487", + "build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json:website_url": "c859eb7790b0e588592ff525ca423dba", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:bio": "962222bc5018b91202bbe4127f5e0cea", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:committee_name": "ea3f00b36de1c2de311723e3645dff18", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:filer_id": "8e6ef402d9b3989cd9a7d57f77144d87", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:first_name": "8d6460811de12181780cbe400693f0a3", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:id": "a8f15eda80c50adb0e71943adc8015cf", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:last_name": "1b7a787dd6fd56e962fd91e95a739c2e", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:name": "8a2f04f85760c93bd553c25f5852385a", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:occupation": "a40cd8cefabf26d309eb4cf8e1bbfc0e", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:photo_url": "24ce51bb24c4fca9ced7f9b23e86f338", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:supporting_money": "a53551fd953fd063ffdd67672a9dbc83", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:total_contributions": "f56f48baf17ee7b5edfa6ff4a145427f", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:total_expenditures": "de3d7ddde18fcb0381881ab9e95bc8d8", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:twitter_url": "100dd885b42b726d77d40c1173f00449", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:votersedge_url": "347c066e8013540ad01edc4c4e8d70c3", + "build/_data/candidates/oakland/2016-11-08/huber-trenado.json:website_url": "c16aed1d95b5bb305db8aaf16a9efced", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:bio": "3db3c514d2f73e9aac9267b2b7e34cbd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:committee_name": "5baa5f9c39b89d9a28f8a32d108a3df3", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:filer_id": "d86ca706a5600d452cde81e4a21b2d68", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:first_name": "d2aa80c88e313a0ac86cef37fc483b2d", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:id": "1d7f7abc18fcb43975065399b0d1e48e", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:last_name": "d0b2f8d7cf33591e869a90f9fffa20d3", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:name": "74a34eb2e562c6dd082b3fdd168b7168", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:occupation": "b61703695d9ec5bcded80b03d6964bec", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:photo_url": "a82d44a2171f1a76fd47b6693c42912d", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:supporting_money": "3234c8ab42546e94cb37cf8480bc8745", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:total_contributions": "0f9a69b163626daab0f117bca53eb5f1", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:total_expenditures": "149dccaaa14c1287807fdb634d100a66", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:votersedge_url": "384f62ed514ee6f8a9638c2e071e0264", + "build/_data/candidates/oakland/2016-11-08/james-harris.json:website_url": "a53fd235542c13d1f9768a7be2f88134", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:ballot_item": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:bio": "ef6ae269ad2923199c8dae0d07aa1e0f", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:committee_name": "7ea13d18ab0d13d64d3b6b5a1322a3c9", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:filer_id": "695fad530c8ccd7ba407ec0f01da7817", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:first_name": "d5ab896cfc598bd4cac7d5076297f7c7", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:id": "2b24d495052a8ce66358eb576b8912c8", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:last_name": "820c0d125a8a3217ac850ab82b665928", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:name": "6c78f11ed7f708d39aa0d10c7361f52e", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:occupation": "a4cf38a0ac2928d2f1338eff5807a37d", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:office_election": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:photo_url": "f9c084df67578d372d66a1f6b9ac2038", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:supporting_money": "40277f6ba52d66c6fa3cdda53b454c75", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:total_contributions": "8ead27958caf175bc7327d37ecb9108d", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:total_expenditures": "c3d8fcfe9441266cdc8eadd8180206be", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:twitter_url": "e68bb67a73fd3fd7c4a2c21c8ad835a3", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:votersedge_url": "1729a7fb74368b9e8243b998f751a4b9", + "build/_data/candidates/oakland/2016-11-08/jody-london.json:website_url": "5153e0b4e35fc4048adbec10502b7154", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:bio": "f10bcb486499cd011bead8a544fa6b36", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:committee_name": "3be7568508826486dc4f8cf481fafc42", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:filer_id": "60a731f89758fdd782e70b3d58c00177", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:first_name": "8a5f4a7bd2b57013215319da941fb70b", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:id": "8d5e957f297893487bd98fa830fa6413", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:last_name": "1433455d3b6d8b67d5d530d04c7f717e", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:name": "5e584c04e8e9a06501031f7472443b0f", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:occupation": "69d70a3bd4bda4f7ccfcddebd72f3b8b", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:photo_url": "425b3a40c5bded63e31acf9a41f583a4", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:supporting_money": "04ee67dbd536954f35fa49a7d6698544", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:total_contributions": "376cae6ad60344f4f055afa136a15252", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:total_expenditures": "65086f5669257e4b5cb87fd558308757", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:total_loans_received": "0b98e47bd16a145f39dc10d6a8c5055e", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:twitter_url": "e26ab6eac2c9afa796001baa26de1a3d", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:votersedge_url": "ddf4925e21ebc5f36df9bf34ae484831", + "build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json:website_url": "e9c187311f0353765c1493dc4e520f39", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:bio": "f3f120ac9c9d5982a783d1407b710736", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:committee_name": "372852c63e691b1ecae23a5b22bee26d", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:filer_id": "4bf14f86414c87a72e3b2447f0b150de", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:first_name": "f37a25f5bf0f21f2347f7375591bead5", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:id": "7f1de29e6da19d22b51c68001e7e0e54", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:last_name": "457436a1f4d63ffa6e7893eeea7d0fd2", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:name": "484c39fc6397503fbadcf70bf147b99a", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:occupation": "23c80e8b3286b0474da8564cff391d08", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:photo_url": "56cd106e5bdfe3d6cb463ad52cdd1da5", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:supporting_money": "96a96d8577c94e132ee1ceaab090f1a4", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:total_contributions": "792bda7e6d1d7fba3bffc1b8294687e8", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:total_expenditures": "4566046c747141fe67f1292c18b2efd9", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:votersedge_url": "c7ef1aa239baaede2274cc3bb70a4c9b", + "build/_data/candidates/oakland/2016-11-08/kevin-corbett.json:website_url": "61fcd3de789d88fe35af8ff8cf693776", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:bio": "afe02ad869a1b74bf3c61c15ec25abba", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:committee_name": "3ea6267f0346b7ed97a1279b3bd39f4d", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:filer_id": "4e6de1cfb2df13d52b9dc2e116f4804c", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:first_name": "4087aa69c31f1de476cb6792581ab51a", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:id": "a5e00132373a7031000fd987a3c9f87b", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:last_name": "07bf2e2937e5283bfd3892edd9d446fa", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:name": "7cc337ec0b35aaa9fc43cc95cd5981ff", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:occupation": "2e099947f0dc1d32ee392c31af60b2e0", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:photo_url": "7b62413cdf81a866928a9dbacc75aa9a", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:supporting_money": "8ccf2bfff07abf081554d99157a65e05", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:total_contributions": "b10a9d9a04e7bbd14d680503bb78d40b", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:total_expenditures": "1cf5008fb9cc7e8f6f823b0af4798353", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:votersedge_url": "2b82b922b1a5dac82f7d060c16d6e8ee", + "build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json:website_url": "74d2c989b38f4e60539a2785cd4920f2", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:bio": "fa429eabc4d34b54b9910735111f813e", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:committee_name": "d769010d4c5356d86360ca587aa4b97c", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:filer_id": "8e4fc55ac8c7e52819535b83db8f63f5", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:first_name": "aa51694413dad26f0df8339d200fea8b", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:id": "a8baa56554f96369ab93e4f3bb068c22", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:last_name": "5b5190186e7724ad08df105441b9ca15", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:name": "597cffd0a750e1805817dd9ea39b33e6", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:occupation": "21247536381d2213238816c42500b560", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:photo_url": "b6239901fb7b26dd67c5652f676dd043", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:supporting_money": "082da5b89a7bae4339bcf2e43077b2fe", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:total_contributions": "11e92ce4c08b98eea78b1177f7ec67e6", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:total_expenditures": "5c4efc8477906bae0a554261dd8289ce", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:votersedge_url": "59caab8e4e6721b2e0936cc7f789dad6", + "build/_data/candidates/oakland/2016-11-08/larry-reid.json:website_url": "fcec1bc9b28e46d0d254b8a2c46e466c", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:bio": "10f348b48221775a663654164b5918d2", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:first_name": "90e96b8ac35730d40cdf18ac8bd36edb", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:id": "f2217062e9a397a1dca429e7d70bc6ca", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:last_name": "8596c8ba17d6425b24e365ed472b3dcb", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:name": "0713125ed83d31817d675622b0026432", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:occupation": "c5f99bcc7145fac4305854038a4e6337", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:photo_url": "d6634d29e04e671e464299a6bf67d2f6", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:votersedge_url": "c69e0bc2685144137ffb1b57a163c051", + "build/_data/candidates/oakland/2016-11-08/lucky-narain.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:bio": "00c80276e4e9177f659647ebb9c5dd64", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:committee_name": "352f77a44f30621241f610abf51fb6e1", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:filer_id": "dafc1c2c0e29eba7f189951506030417", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:first_name": "b4236c501f72d1f13b81b6386221c4cd", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:id": "013d407166ec4fa56eb1e1f8cbe183b9", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:last_name": "b438bd71af6f104441cfcd153f5110d6", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:name": "a06f34db85b02df54af971b294a0d197", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:occupation": "859e771fe50c536bb6c9d62038a7bfd1", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:photo_url": "bab173efa44378e28d1fe8a27f9fddee", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:supporting_money": "c7fdd0f8de219ab4b4a64b34f9b61507", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:total_contributions": "bbf6aef72c2657b6386314802d48db82", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:total_expenditures": "68ea328bed4f83b2cd6e0341644d64a8", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:twitter_url": "ff0fc37a4c7a077e9ef973cca5bd83ce", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:votersedge_url": "17b2f33810ae09d575b958b301ab23a1", + "build/_data/candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.json:website_url": "418be382defc404179128e77a8dbcb10", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:bio": "8a0f27df063c7ea878dcf0ef02376b79", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:committee_name": "b265fedb208cbb7bf05c026687ad9037", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:filer_id": "8921292fefe3b0aefda4e4c6218f01d0", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:first_name": "da6fb6f22dd3608d423a856a0f53fcec", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:id": "0f28b5d49b3020afeecd95b4009adf4c", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:last_name": "ab59b4a74f74d7a6a7e85c18abac3b4e", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:name": "59a393a6f7001ee89a2d69ab99664141", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:occupation": "b34ec348e667a7bfb7b8174277b163e0", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:photo_url": "7b96794247590a37c541d2152947ffdb", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:supporting_money": "aa52ecebee75576bd982ca681c749fdb", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:total_contributions": "c40edbd5bdc621662d77a3522b5f35f5", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:total_expenditures": "7f0a02aa49b7a37c70cb9bb0a8493c1a", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:total_loans_received": "e4cd7ceccbd59353edc4fc8eb85057a0", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:votersedge_url": "d2f2377f325f011339c634112f23c0b6", + "build/_data/candidates/oakland/2016-11-08/marcie-hodge.json:website_url": "0bd2d6b395316c760d5d8bce571a789a", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:bio": "33fe358a0b8c48d8ebe3ae9e7999035e", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:committee_name": "5bddb55e553640ee702d56f7b0ebae16", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:filer_id": "cf1be2996cc02350be42345cb1b4e226", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:first_name": "a9c6fb6cd623935d1bc88a0b86197e8f", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:id": "7ef605fc8dba5425d6965fbd4c8fbe1f", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:last_name": "7cd789124b41be009016a535198f377d", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:name": "2b94bb0491809950b6ddfdbd4c6f0d53", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:occupation": "06778c614f88de64bcba12d82e2d87be", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:photo_url": "feab5c7cce1e0872f2e6712aa177b579", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:supporting_money": "efc5870dde52f1eafde3ea5e0d5871d2", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:total_contributions": "6fd469a3c5f372f640c774474b0f1475", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:total_expenditures": "b7a4de07d3539c86db560e01a3be3c76", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:twitter_url": "df3368ce8cdbce32a031d7a0dda034ff", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:votersedge_url": "af35044251af1b1d65b5398500d64297", + "build/_data/candidates/oakland/2016-11-08/michael-hassid.json:website_url": "08fec1cb43983387dbaf02db30ce726a", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:bio": "514a030aa32bc6a5d4c019d2673f6e3e", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:committee_name": "17be4903531e4d8ff3b373668880abe3", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:filer_id": "af1779dab451b9a98d11834d04e33388", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:first_name": "a9c6fb6cd623935d1bc88a0b86197e8f", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:id": "b3e3e393c77e35a4a3f3cbd1e429b5dc", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:last_name": "5089bb111195d66765b96aadd9ba4442", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:name": "af57386798740f89f5892da47fc532e4", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:photo_url": "3ddb8f8866139b5a64e051d8fa85a517", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:votersedge_url": "f7831e283ee44cc589b938a8da9c02ed", + "build/_data/candidates/oakland/2016-11-08/michael-hutchinson.json:website_url": "05ef75dddb5ea056897361c57f336403", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:bio": "24b643b5460e19f100e5ad6fc6b84f6f", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:committee_name": "c5fc5f113bfb64c3f7ef38f897c0443b", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:filer_id": "147ee80f0cf2e08ca1b5067d21485a43", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:first_name": "3265bf9ee3078d31e343fe37846955c7", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:id": "9fc3d7152ba9336a670e36d0ed79bc43", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:last_name": "5825289e3c17b90c8a9431cfa73baceb", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:name": "33f6b74cdf3f39b3a61cf14a3ff0d4c4", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:occupation": "c6a2883e30cdf7e7997d907be93e1ead", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:photo_url": "55be4a41b46e61b8b0d4eb7ac9805ffa", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:supporting_money": "61cfdf8a04ab0912d97fce48a857079c", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:total_contributions": "7b78cf17f58cefacac89b759da7ee481", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:total_expenditures": "f83b38dfca25fd1eaf7a90bcf31a69d0", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:twitter_url": "e5eefeb4e1f434b7552c501a08db1d85", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:votersedge_url": "3cb4cb9fe2bdf49dbaefacbd1bf4dec5", + "build/_data/candidates/oakland/2016-11-08/nancy-sidebotham.json:website_url": "750a142ea8f3e4265584cc9796e11c28", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:bio": "502b1e82bc62f9c6d8270477a743b1c9", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:committee_name": "bb5c4d69e2045f3de646cf7237c5f189", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:filer_id": "a78f4a12a0ab8b901fc54b5ca1b61b5e", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:first_name": "9385cf2cb00b78aab08306adcbaeac5f", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:id": "903ce9225fca3e988c2af215d4e544d3", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:last_name": "d224c105f9f029a39c020bee34266b72", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:name": "f07355da2f062e6d5484837adfef2ddb", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:occupation": "955a0baa908bb0bc9c673f81855507de", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:photo_url": "b61e289209b4ce31a76bd96219c3c149", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:supporting_money": "912653e0523d4c6f01ecca2c53eb7c03", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:total_contributions": "e2a804552fd188a7847c0488f65718b2", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:total_expenditures": "1962ceb6a977a05f8a5eac049773294c", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:total_loans_received": "842cddc32258660a7e9b37ddf2217064", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:twitter_url": "bbd0ff3427947fd151829c9291ba35c9", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:votersedge_url": "fddc86663db805dd8d2f58088c2983e1", + "build/_data/candidates/oakland/2016-11-08/nehanda-imara.json:website_url": "8d53c9bb01940fc634d179e2a767c11c", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:ballot_item": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:bio": "2d7243fe9eafcd894ef5532af9b66433", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:committee_name": "cf86357062d4ca55d1f559a8c6ac3b3a", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:filer_id": "86daebfaecff6194075f674ba67038c0", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:first_name": "c7410681c9a5612491fd0fa2e6f2605d", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:id": "e00da03b685a0dd18fb6a08af0923de0", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:last_name": "91c4eb735b28a11ae7900f72ff346fbf", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:name": "f69e76d91e9ad52578b43ad36cdd4caa", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:occupation": "859e771fe50c536bb6c9d62038a7bfd1", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:office_election": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:opposing_money": "7d02bdd364dc95b9c77af41b1570f770", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:photo_url": "c2f87472308ab67c031c9d381ac3c38c", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:supporting_money": "acb03c49a8a00a76bff0eaeb75def9e3", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:total_contributions": "e83cc07a5b39b721df087d12cf983352", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:total_expenditures": "4872bbf593c634e5fd2178cc3e4569f1", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:twitter_url": "f8e9a8b222fc239bcebdf21f1bf6196f", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:votersedge_url": "f4915dab8e623276b4933ba3bd794df7", + "build/_data/candidates/oakland/2016-11-08/noel-gallo.json:website_url": "c051510a3cfeefd6a9aad5776a0211bb", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:bio": "9ae066e979e74c3d4a8da916c886f93c", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:committee_name": "26a66e93ad35e623314617bce57903db", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:filer_id": "ac82abe05555d1a069e0f88b84782dc1", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:first_name": "53edeceded36be33009075131c27da14", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:id": "3988c7f88ebcb58c6ce932b957b6f332", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:last_name": "940f0ad322d4b1fd6d16aa93bd0be2a4", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:name": "7095b91b250525b28290686ee21dc0a1", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:occupation": "663a2d83ff47f70467495c7396a9ffeb", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:photo_url": "a7fcd7a3e9805a7fea968941bdd3958a", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:supporting_money": "505cc84a26f9a6c53f4979b5c3b22307", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:total_contributions": "22bf364ce3ec714c190095b47ecfbf63", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:total_expenditures": "aeae3a764be9d6b1813721393a5cb559", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:twitter_url": "fe34de6f3670df1dc8aea207596cb3dd", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:votersedge_url": "0cbb5aa99d66c8e50c9c56a4cd47d873", + "build/_data/candidates/oakland/2016-11-08/noni-session.json:website_url": "dd219653386603cd1c1eac4aefc5a214", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:bio": "78aac717d62ae384caad6e66cbb3c66e", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:committee_name": "8c1f47f784899551c0ad381546f119b4", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:filer_id": "458dcd0212775b0a3270ad4361ceed35", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:first_name": "e302b6842fe54c9748ed5ad7d4214103", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:id": "1afa34a7f984eeabdbb0a7d494132ee5", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:last_name": "e08a30b810a20901c5e339eabf995538", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:name": "3ba03443364f196d63dd135dd8b60eb7", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:photo_url": "12d59f5c4912091cc0b77b6ffaad1ba4", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:supporting_money": "3875edc33baa6e12b178c78496ec4296", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:total_contributions": "36483f344d9911002807ff659f056ffa", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:total_expenditures": "f8cd97a5023b344ec58e3435d2dc45c7", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:votersedge_url": "eb84393fab5ea06c74a5ebd12ad14453", + "build/_data/candidates/oakland/2016-11-08/peggy-moore.json:website_url": "521849bdffe4eced29f4dde9a08605a7", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:bio": "d72806f6c38b804ef7c0f5c8c99c3df9", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:committee_name": "b05be6041388ace9b750fa3eaf14fd87", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:filer_id": "e7ea8231f8acd4eed66d6ae280109b9d", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:first_name": "8b450e64baee8642ec79f32a99444144", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:id": "02522a2b2726fb0a03bb19f2d8d9524d", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:last_name": "2d9943cd802bedb8c14d8b0251444656", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:name": "2e2e05a62560df239578c47adfeeb68c", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:occupation": "1c80e553615785e25af0ea4f7b2b2714", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:opposing_money": "c5e50bccdd1af01ed8b72047fdbf414c", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:photo_url": "a109ef081bade855bd65a029f90712b7", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:supporting_money": "4f796c988fea99bf6da30be4d70448b7", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:total_contributions": "ac888e631519abea72f07aa02058a81f", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:total_expenditures": "09aadb5673b835e5505ff32a095df5bf", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:twitter_url": "43e6f06f5889f97d1c7b50c947154411", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:votersedge_url": "c059195d40933472fcc7ed247952a772", + "build/_data/candidates/oakland/2016-11-08/rebecca-kaplan.json:website_url": "ef4e2876e18fc96d584307215103c6a9", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:bio": "288641747dd4d2a02d299fe5dfa46a9e", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:committee_name": "6165e3b384966894c17f3352e770d1fa", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:filer_id": "7baf96c2f90a2aa1588ae08c651d3d90", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:first_name": "43d6f8393a3f030887c9bebb66847448", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:id": "37a749d808e46495a8da1e5352d03cae", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:last_name": "16f27a3974da3654b209864bae627098", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:name": "a1a033b9c03b300fb1dce3fc113da932", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:occupation": "a9b70fb6e65cf5170226dfa9fa1e2d90", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:photo_url": "abe946e98ae3e6e162eda932a4601aea", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:supporting_money": "233072f0c0e987dc28818a715a020783", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:total_contributions": "2cbe4da28034a2afae191162a0ed00a6", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:total_expenditures": "9936bbbd87c8e8a7683125b72a6440f8", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:twitter_url": "352275243f21796a98a944a7735b98c7", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:votersedge_url": "00eff40287297023fc0dd48039a558af", + "build/_data/candidates/oakland/2016-11-08/roseann-torres.json:website_url": "11a1121f1646926fcdd0a749fb90a67a", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:ballot_item": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:bio": "2a655bd5c6e997295a7b8fba1782456d", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:committee_name": "421460a8eabb4cacafb0278df555caef", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:filer_id": "3ca47432a36e60c8fd2b59626d114786", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:first_name": "75ab50e6e1391db84ffa7473a86f4f85", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:id": "1385974ed5904a438616ff7bdb3f7439", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:last_name": "6d9e72ef188c42b2b2a4161de1754ca0", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:name": "5f2790df0e370348a382fac5364c79e1", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:occupation": "36b7266ff6b4fd7b4183fe17483af0c1", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:office_election": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:photo_url": "2b875591adb8ecedd816fc4c56593630", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:supporting_money": "6bdb5e1be95a6b9cfff1bb40143c20f0", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:total_contributions": "bfdd2ce7d9cb471abccf35ead8a033a2", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:total_expenditures": "ae32d94e36de4f49df8ae84b1d61f600", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:total_loans_received": "9c8dfbf93c1238218c5d0a1c0ac5f777", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:twitter_url": "f9a7259c681b2f061af01fa967b9ec79", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:votersedge_url": "1ed61f9c94e414a396c002f0af085c2a", + "build/_data/candidates/oakland/2016-11-08/viola-gonzales.json:website_url": "3ceeaff9f5a34cd5e6cf3740652aa5d6", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:committee_name": "9ca2c2eda04526e54a10624527ffa7ab", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:filer_id": "4007f92ffdb7b4206abd317a06e42fe7", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:first_name": "58e80c59ff668736fe3b081db3cabb35", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:id": "f899139df5e1059396431415e770c6dd", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:last_name": "b47896380fbf0efd194b42ab5841df65", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:name": "3bafca4830eb6221ef7507093c554607", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:occupation": "60f274a2f66b2afd3f4a3698ba81b692", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:opposing_money": "151cc76be304dc3402fd5d95ba1a049c", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:photo_url": "51f58025f1693c6ac55de368df6f9005", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:supporting_money": "8399ef141c28770ba2653052e377b2a6", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:total_contributions": "bf518d31b8ebc5ad2cf4772182d3f4fa", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:total_expenditures": "2f28d6ed12bc500ab05e5fe7d4f6e8a8", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:twitter_url": "7e9058b4c4cc1f8d929c8bf4bd91b07f", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:votersedge_url": "d9fe76964990abc6694bc71de7e6d957", + "build/_data/candidates/oakland/2018-11-06/abel-guillen.json:website_url": "761b56fd69cf16976fbd634d6b634bdb", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:ballot_item": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:committee_name": "e84de7ea00a9371baf21f9f06ccf5098", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:filer_id": "c928870e6473c792dc4629ad86611c80", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:first_name": "0deeae9807fcf53cfeedabacebd3a333", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:id": "c8ffe9a587b126f152ed3d89a146b445", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:last_name": "f41a4b9260715c02bed739317a362f9f", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:name": "b3c8327c721ad8cf3972fa59fe240fe8", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:occupation": "fcd2f5ef6a33d1e7d57e0e003a4f7b8d", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:office_election": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:photo_url": "17dd47dbb789a7af2f8d17d657c047af", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:supporting_money": "6dd0f36efa99a3dbfdae32aab1d110a9", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:total_contributions": "21ee0c26388e83f443c4c735951e8fce", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:votersedge_url": "acdad9cd1b0bc5e8b5220d4c226b07d6", + "build/_data/candidates/oakland/2018-11-06/aimee-eng.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:ballot_item": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:committee_name": "df8220ccae8b89097ea0a180b98a3f83", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:filer_id": "3e232a6300bf4889f435da739b9f2519", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:first_name": "e68a2fb39dc0f346dee7c409b6f89585", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:id": "ec5decca5ed3d6b8079e2e7e7bacc9f2", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:last_name": "507d7960a8b8a1dd944d49bbc71e9eae", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:name": "9bc65f6206a7d1f7b299b3f744e5ebfa", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:office_election": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:photo_url": "a384b038382c3b918d4cee9aeea139aa", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:supporting_money": "bba46aa1c226bf07a769f91037451e50", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:total_contributions": "7b6cff78cf12e3370d2c5f3ed4490e17", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:total_expenditures": "75d4ad172017716428155ded1adfe02b", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:total_loans_received": "15efad9ae5d5211caca9fdda92ae7788", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:twitter_url": "0aa6c2d762c301fecad0700da2d60b20", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/anthony-wilson.json:website_url": "7de209398e7af60d6d34ab609bbfded0", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:ballot_item": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:committee_name": "b42645d84edeca2a5d5d991815657a66", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:filer_id": "1ff5bd213fcbc7f870396b29a19965f1", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:first_name": "5b7b210c9745c38af3b2ee6f14b911c9", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:id": "ed3d2c21991e3bef5e069713af9fa6ca", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:last_name": "d4f6e90d74d6b45b2d88f6edaf5470d2", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:name": "d9911ee528c99cd5789e366d1658d5b6", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:occupation": "a96384b12195eb82d4db7737ffa1784d", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:photo_url": "2e7acae294b07bb20275cd182391b163", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:supporting_money": "e9668341789e52c65c6e658c714aec4d", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:total_contributions": "bd8a275eed2993240b6899d1bc273819", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:total_expenditures": "bd8a275eed2993240b6899d1bc273819", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:twitter_url": "e0b63b224f2b6cb732badac446b54139", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:votersedge_url": "eda3de42efddeb2c78166b3efa33ea50", + "build/_data/candidates/oakland/2018-11-06/brenda-roberts.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:committee_name": "6cd12b7de6788e9a6b7dd51024b59229", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:filer_id": "5bf9efad2e8ede452dc662ef84b2e5fd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:first_name": "45222c38f203b5e0214cd68b60cba51d", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:id": "c45147dee729311ef5b5c3003946c48f", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:last_name": "ce7678a76a51a9d24e5cf8c739677209", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:name": "5bc021327c8c9bd552e821faebb62554", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:occupation": "199c565ca864cf93122bb7d6de14119e", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:photo_url": "8317b632f5bb670bb8b2f8a50bccbdb4", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:supporting_money": "a910bbf3fdccac4223a36899c341c6f3", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:total_contributions": "bac8e597fea7ae54e3ae4a96781f769f", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:total_expenditures": "05f38ed83e369b2872ef34e2a6d8a3a4", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:twitter_url": "1c3bb096c68a8b90c1aa6ba4701f9367", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:votersedge_url": "4ec7103c52962bb432b9727c18a796bb", + "build/_data/candidates/oakland/2018-11-06/cat-brooks.json:website_url": "4beee7180990905af7d27cb8f4c1f3b8", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:committee_name": "5d956e3a54b805f658337798c7b0e865", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:first_name": "932aaba9091154c99dafeba4a1428b0a", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:id": "da4fb5c6e93e74d3df8527599fa62642", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:last_name": "6dcb7a946538ceb3e2b4d8f2a39fedb2", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:name": "580d93aa4bd8af9af9a5953535f325b6", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:occupation": "a03a0cf354d22349f31a43432a4ad9b1", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:photo_url": "a84fc9c2fbfb4d7449eb4a3a7d674e8a", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:votersedge_url": "137492cc1e12d6c0c2cbc4dc707199b9", + "build/_data/candidates/oakland/2018-11-06/cedric-anthony-troupe.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:committee_name": "9d039c76f2460c7a4d4f420ed6b20643", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:filer_id": "1a05ff64aa2e6693c95b9e76930dfe3a", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:first_name": "21b8e88de4297dacd77f253f3a971d4d", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:id": "c9e1074f5b3f9fc8ea15d152add07294", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:last_name": "66e5675a8a839a7f97aa50b336cb41b5", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:name": "75cdc26ddf1c49c35132013225aa33f7", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:occupation": "271aefa1944ad67e682883f15fe07a0f", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:photo_url": "f369e804ebb49f991882a3b259137aed", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:supporting_money": "1ac475d866950d4e378322723868fde7", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:total_contributions": "c00dd9221d8b317570143f80438de06d", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:total_expenditures": "80e1bf84b06cb8c86fba96ed38349032", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:votersedge_url": "8e53b4aa0780091900bf7c29e836096b", + "build/_data/candidates/oakland/2018-11-06/charlie-michelson.json:website_url": "325ca7e1a35eae51acf34bfd9e2a8ee9", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:ballot_item": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:committee_name": "0a7308a1ed1f4cd8fd27dfbe51f57aa1", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:filer_id": "fb9373b673bf14733b741752848a80b8", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:first_name": "fb2c9141c6aaa4a980788dd648c1bb2f", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:id": "069059b7ef840f0c74a814ec9237b6ec", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:last_name": "a207901850c2b2576657d235bd1594ff", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:name": "592e9bdedfb4fe1be7e94d17fad8517a", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:occupation": "296cc7e77fa7c604502eab9fadb0d89e", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:office_election": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:photo_url": "477a1c06c05f4fbabb33cde91f5c86c8", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:supporting_money": "15ac160adf5f93cc846eceba40bf78b9", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:total_contributions": "ce7c8ebc91dd377e72ae48bc95d26dcf", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:total_expenditures": "ce7c8ebc91dd377e72ae48bc95d26dcf", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:twitter_url": "f0e4799c5733b4b21539f66db4df3d9f", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:votersedge_url": "cf8a483f32d8bb3f955e1bbc475c9220", + "build/_data/candidates/oakland/2018-11-06/clarissa-doutherd.json:website_url": "2097299d51eb7c7460432497d2db52c5", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:ballot_item": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:committee_name": "b509f15bb970e107a3eaff0bd722509a", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:filer_id": "6f78d99d5d0cd1956aa96bedccb539ec", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:first_name": "ab8a182f2d0653ad50201abb0642da19", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:id": "67c6a1e7ce56d3d6fa748ab6d9af3fd7", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:last_name": "2f8915db98fc7aaf70caca4df9ecdc6d", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:name": "76884662ac75e9979f6b9b68f6426a1b", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:occupation": "adaf8fea44a7e01d23f60f2bb9b59750", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:photo_url": "4f15717c70f1597229507ccbed90b489", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:supporting_money": "8741a88396f6f284e29a20d182996d60", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:total_contributions": "2291e0bebd5370e27bd4775d2c49662d", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:total_expenditures": "2291e0bebd5370e27bd4775d2c49662d", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:twitter_url": "e920da7839341517c709d47e0a195af4", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:votersedge_url": "6d5316e84100fe44c7ea431c035d0b6c", + "build/_data/candidates/oakland/2018-11-06/courtney-ruby.json:website_url": "2d4c14cbde330e4e9d04eda845daf9d6", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:committee_name": "51e4fa5905f4096401fa99b92304cea3", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:filer_id": "1144e35a6b4bba43aaf589f21128062f", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:first_name": "b2d2f8b081155182f6a405a050ed3d36", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:id": "73278a4a86960eeb576a8fd4c9ec6997", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:last_name": "ce7678a76a51a9d24e5cf8c739677209", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:name": "fe2bf21862b0e32634ffbaf4ac782bbe", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:occupation": "60f274a2f66b2afd3f4a3698ba81b692", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:opposing_money": "d236fe4e692734eecc5a8e82d1cec480", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:photo_url": "85eaf962661cff24a7c5320a41620aa9", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:supporting_money": "b0cff70c8c50e9f4f8339a2da96bb030", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:total_contributions": "39b0c656db457183725e2b781839aea5", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:twitter_url": "27469a11d19c4da5ed18bf468fe422d7", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:votersedge_url": "55c1d4d10485ae2604d19b5d8e75c53b", + "build/_data/candidates/oakland/2018-11-06/desley-brooks.json:website_url": "aca4e3ee545f6baccfdffbc2708c8ad0", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:first_name": "61b1eb3260c6b8d728c0fa1ec77ffec2", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:id": "38b3eff8baf56627478ec76a704e9b52", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:last_name": "b0574b4f4a83bbe47e124d2697cb1205", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:name": "1ab04d7d868794bc72a8551f08c1a8cf", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:occupation": "e7429d173056a369e9e90d571a821f00", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:photo_url": "8a0d88c3fa1035d1071e70ea081140cb", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:votersedge_url": "c87e95cc6cdbb1a71bc896ef065b09c3", + "build/_data/candidates/oakland/2018-11-06/donte-kenzie-smith.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:committee_name": "8a79012e1c96653ee0b3de5c666b5ea8", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:filer_id": "78dd28af4bc69073942861b534ad9352", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:first_name": "5ce094e98252ca2604cb9dc753982daa", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:id": "ec8956637a99787bd197eacd77acce5e", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:last_name": "34731aa3df1953e54197137506fc865b", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:name": "cb1b21db0e66930c15951d81e77d4b3b", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:occupation": "9cff5d9499060d12f968d144adc27d17", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:photo_url": "28998b932ce1a3f9765d0db71ade17cc", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:supporting_money": "587231b0398f0e2b03c844db064f72cb", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:total_contributions": "ae4c964ab4019aedcf667ae5c6a3630b", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:total_expenditures": "2c397e76cf856a1de1cf1983c8a3e31b", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:total_loans_received": "1c51ac3926a046148a24ba048afc85cd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:votersedge_url": "332c81ec1f277c384b932461acf427ec", + "build/_data/candidates/oakland/2018-11-06/francis-hummel.json:website_url": "669bf73c2f4e1a1b6d9cbd75190d4fa9", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:ballot_item": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:committee_name": "83c2f17d6ce16cbf11e3b9a6f4b10a7a", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:filer_id": "7538115fd9015be4e3d1e7d990f8b68c", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:first_name": "c9dee94161ea9b04b82b136b826e8358", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:id": "3def184ad8f4755ff269862ea77393dd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:last_name": "c989365944495eaf67ba56309ef9bbcf", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:name": "647db01b12e60a8a559a4766ce888e12", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:occupation": "b889d366c4dbec0c2345fc20a2484a0c", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:office_election": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:photo_url": "59c22c4e5b6bf864e858732ec80df84b", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:supporting_money": "32ec602357175e163a5696c4facb7a05", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:total_contributions": "d33500238ff3b4cb6b275d05c4644ac6", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:total_expenditures": "be6c15279ca409de1718075bf3d7df69", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:votersedge_url": "ac39efe008838408998a9c1a107e0813", + "build/_data/candidates/oakland/2018-11-06/gary-yee.json:website_url": "efcf639104cbb886cb45652068f540b0", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:first_name": "2864a85b13ffda424792de19f5ea793d", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:id": "4c56ff4ce4aaf9573aa5dff913df997a", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:last_name": "eafe7db2ac37d39f6af740665079ef43", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:name": "631bd727673d8e6a025def8981cf1a41", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:occupation": "9a3c7edbd03eb956190ce1d3509090f7", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:photo_url": "07f9fa7063ed336541dcba8275c964ad", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:twitter_url": "ee9d1dcee4ad9e264e599bf24f18e98e", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:votersedge_url": "700aef77efad094fcdfde1c0ec0323e4", + "build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json:website_url": "1d646c2730c5aa395b41ecb7e3e226c7", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:committee_name": "9b7596fb3e6962c510d020a0310764b3", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:filer_id": "1ec3ec17a8c6c3790c37a8d2ee270352", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:first_name": "36b2e45b2ac16f1cf9fc72e76b75a825", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:id": "6974ce5ac660610b44d9b9fed0ff9548", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:last_name": "ead11813c969529d56ed08b639485887", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:name": "9d121a288550ea3171e35f2dc8b07a39", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:occupation": "97421fc9495163c966fcc1d29e030be6", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:photo_url": "98eef8e91a9033cacb3a99c860dc2783", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:supporting_money": "4ac22b103939cf63c13724c6a4135995", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:total_contributions": "48bebc296f00f41ad9f39a1b59db34ad", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:total_expenditures": "b4a53db93a1578ba76990dd84e92d726", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:total_loans_received": "cbfbc079948262e4df02aa4a0d3fb267", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:twitter_url": "547a7bc4ca6b7c1caff06a3b68522781", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:votersedge_url": "bcfef1a15367e5cc77e0557ad2cc83f8", + "build/_data/candidates/oakland/2018-11-06/joseph-simmons.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:committee_name": "86c5964629b667998de52d66e89827c9", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:filer_id": "e57bb9b6304f764fb1d96b4d7d25fa38", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:first_name": "36b2e45b2ac16f1cf9fc72e76b75a825", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:id": "65b9eea6e1cc6bb9f0cd2a47751a186f", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:last_name": "5924442ee8d2369c3dddf7ebf781bcd9", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:name": "79e93cc9c89cd787733bd15162a2caa5", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:occupation": "2ccce25b8dce1a621d1ac79915c3338f", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:photo_url": "192d89b31a6b3ead0b959d111fff30c3", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:supporting_money": "f6c0f608e716fb7ab6392339ee8548c9", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:total_contributions": "0f021fbadf99310cb2518be449196851", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:total_expenditures": "500d2543377256642016dcd62ad693b9", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:twitter_url": "ed0842e9e59aab2e709da00d3d8d3a86", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:votersedge_url": "28660ddedb4e8be63afb7024e2adf89e", + "build/_data/candidates/oakland/2018-11-06/joseph-tanios.json:website_url": "fc35904799baee06f82bf2bfab15e01a", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:committee_name": "3cf2ac95d9d406aa06851edcd694c27d", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:filer_id": "29e5e0ca0061fe4ef1a64255d6934fcd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:first_name": "05ab84aa487a4a41c0f0d540d0e081b3", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:id": "5fd0b37cd7dbbb00f97ba6ce92bf5add", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:last_name": "0df223e49801aaebafd6db1d4b93dfa2", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:name": "b751a99fdd99b0b8391218f916449659", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:photo_url": "a394365aa5c20373212c81ffcc393303", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:supporting_money": "20a11ab31dcb1544f3cfb023364a8972", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:total_expenditures": "8f9eeec6fbfb13f1c10be0cdce16c619", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:twitter_url": "17d014527aedf560295f9e1e43373437", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:votersedge_url": "d8e2c6a67d40f0126f254fa6ff39a6b1", + "build/_data/candidates/oakland/2018-11-06/ken-houston.json:website_url": "daf1c04fe6ec967266efff5daa8efd58", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:committee_name": "858f8646df214e56d7bdcf2c1f1af0d0", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:filer_id": "3791c1b4f1ed32dcc0c9b64ba650a347", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:first_name": "5fdfe865a8a642805fe20b6b0df7500b", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:id": "07e1cd7dca89a1678042477183b7ac3f", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:last_name": "37541a9ac0ebbe554fa4934ff98ebedf", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:name": "378a3e0cfa58d0d874e68866132769af", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:occupation": "c32b2210907b96aaee6f948cd4943265", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:photo_url": "f11f9bdd3eea617410c0fd307f22dde5", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:supporting_money": "b9f01a857cdf08d4124b8d9919e692f7", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:total_contributions": "e041a7d07a04c2370a0bc0d5563a7b08", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:total_expenditures": "a15eaf9a86cca0ad2b613e7acb1dc5cd", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:twitter_url": "a7dac86ab3261c024f7dae499e7988a3", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:votersedge_url": "594d43942266390ba1f32d36bb6f8af0", + "build/_data/candidates/oakland/2018-11-06/libby-schaaf.json:website_url": "d163cfe1195c1c4ce5754f3340771236", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:committee_name": "e7cafec403f5aa9cd8a2e0548a47d85f", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:filer_id": "440dbe998baaba030ed515e93b13ff73", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:first_name": "b2a1399bae3b8a31cc287d6c54f24c66", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:id": "7f6ffaa6bb0b408017b62254211691b5", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:last_name": "56aa97db40d517c1d0ba81975261e804", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:name": "1765174b850715d07030645010eaf496", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:occupation": "8af6cc0ae2f1de63d4e0fd7b26078c44", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:opposing_money": "ef9bc92fa3d60bc89b44634370c73870", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:photo_url": "fa7bbccbe6a8856fc3e26ba46a221b02", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:supporting_money": "7e93ccf9bac510c5b9ec01f716c25bb7", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:total_contributions": "e15b7b55c88b25db9afe6e03f93120ea", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:total_expenditures": "698c1b9d15939de6bae2ca73eb456371", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:twitter_url": "87dca0f4d46bb7adf0c9bac038f5c2f2", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:votersedge_url": "caa46df9f3d64420bb6b9017cc44799c", + "build/_data/candidates/oakland/2018-11-06/loren-taylor.json:website_url": "1f70048b7165af9c9a2c1146c486fb49", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:committee_name": "d6f3a8f1d3d60b334dfd585db95df8f6", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:filer_id": "2c7080dfce5afaf574d3b87e658c94d0", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:first_name": "c2426989400bc1e81a1944b56b18a7d0", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:id": "eb160de1de89d9058fcb0b968dbbbd68", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:last_name": "6c7564a58db9393a175da5bb1b2d940e", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:name": "b7ba3457885a60661b2f4b606ef8b452", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:occupation": "69ee051f2e81d6aedd3add7308b77417", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:photo_url": "5959bb5758e14d0a41bff6c36193bf67", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:supporting_money": "65f0557f665c5dd42270bbf448de5023", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:total_contributions": "7d798ddd99e3ebd92a21e1064d83479b", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:total_expenditures": "11921c9d74a06c6f4270964017d0ec22", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:total_loans_received": "14be96d3b274c16cbaebfe97c432c2a6", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:twitter_url": "8d0d6513c832afe1bc6b205d721246e5", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:votersedge_url": "06a8a0190c63bde6c33e17889452ae79", + "build/_data/candidates/oakland/2018-11-06/marchon-tatmon.json:website_url": "d6c44dc9f408701e25876d47745f7709", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:committee_name": "ffe982ea623c291d422cea0dee016fc1", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:filer_id": "87b7e5acc01f348bc91e8e1de26601ae", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:first_name": "bda0640b64695991182b9450de01524d", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:id": "5f93f983524def3dca464469d2cf9f3e", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:last_name": "4849131a6e4894828ccbfe0ce080891c", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:name": "866d8b77b1b576e209de611b7565e20d", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:occupation": "2866a859f8d50857099bdb835367f3ad", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:photo_url": "6fc82617687570494736397613340995", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:supporting_money": "e938179e6c68b20bbb2ca37825d459a6", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:total_contributions": "9468d5b432d5b1c8a4378cd8288de748", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:total_expenditures": "9468d5b432d5b1c8a4378cd8288de748", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:total_loans_received": "bfa38392e08a636acc3882f5179508f3", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:twitter_url": "068af096cc4efd7dcd2121caf8bfa740", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:votersedge_url": "656d9e40870beb2b97e57f879d5715f4", + "build/_data/candidates/oakland/2018-11-06/maria-marlo-rodriguez.json:website_url": "79c2fd49334e6913669a91782db67b4a", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:committee_name": "c5c9af2eedc202439a92caf3d3f0dc10", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:filer_id": "5dc0132a8c66d4a0787fecb5ff5879c8", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:first_name": "70bf9772ce7ea4b1fa014e772968cb7c", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:id": "2723d092b63885e0d7c260cc007e8b9d", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:last_name": "9d342566f964ed86405c63060929cd27", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:name": "8186bde6e584d54a43527324d4b63ad9", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:occupation": "ead8c8395cbd28eea4b8f3edad4ab62d", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:photo_url": "6354da558d9f2336826c8e64cdf1e2fc", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:supporting_money": "0812ff0a5d62b498e5d2fdb0b974241d", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:total_contributions": "40db8545f7a0c59a95e923bb49e2712f", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:total_expenditures": "e5232b86e27947c447cd7b7bfb2eb2da", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:twitter_url": "4b43254b8f6041ff9f9cd7cbd7f2a6c7", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:votersedge_url": "039ea2da21c77f09167efb35a5bb5de4", + "build/_data/candidates/oakland/2018-11-06/mya-whitaker.json:website_url": "bfcf154ca34ef2ccf44ca6a2562bee63", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:first_name": "3265bf9ee3078d31e343fe37846955c7", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:id": "a0a080f42e6f13b3a2df133f073095dd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:last_name": "5825289e3c17b90c8a9431cfa73baceb", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:name": "33f6b74cdf3f39b3a61cf14a3ff0d4c4", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:occupation": "c6a2883e30cdf7e7997d907be93e1ead", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:photo_url": "fc919b59193316d75936e200d764bdb4", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:twitter_url": "e5eefeb4e1f434b7552c501a08db1d85", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:votersedge_url": "4a3ead4ac43ebf7c17ff968cf6d52768", + "build/_data/candidates/oakland/2018-11-06/nancy-sidebotham.json:website_url": "750a142ea8f3e4265584cc9796e11c28", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:committee_name": "56f232fe896a0349255736c6ee462a5e", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:filer_id": "e5c72201f52f63b63a9c992c1dbbf334", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:first_name": "4b186c9465782314c1cd8897b50c20b8", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:id": "698d51a19d8a121ce581499d7b701668", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:last_name": "b26d2295ff0837e4f6ba651fe1503bf9", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:name": "740e52e25d48a6c608733d34556ead66", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:occupation": "2cb07477ada7512186db8d71902be2f1", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:photo_url": "d1e0aa6c57bfd2e4a65f45a55769b4e6", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:supporting_money": "fe9f5d8e27fe4a0e8e52c0b59891de91", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:total_contributions": "2eedf5681543df5e50107bc9fd60cf68", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:total_expenditures": "9fa284296991a2013c2f2463493af09a", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:twitter_url": "c45b729332d082a049f1a32ab41d8a29", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:votersedge_url": "7118ff87de0723a39a4e3a51609c7bd2", + "build/_data/candidates/oakland/2018-11-06/natasha-middleton.json:website_url": "f1d0d58773e715c8621ba895b95ea70c", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:committee_name": "c4d9a30f03dac85a801d40eabd5edd20", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:filer_id": "fc8ce8cb369292edc96f55cac2ba1f4a", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:first_name": "9df1e7171c2f07f851c04c0ce5b8b4db", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:id": "a3c65c2974270fd093ee8a9bf8ae7d0b", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:last_name": "8ba1921ab9c6b100aed18ea3f7dc1be0", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:name": "a9dfd285c628d9dd42d9eb0d8237b2bd", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:occupation": "194cf14d2171173b089620728f33aab9", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:photo_url": "88e996afdd32329d27607ac53fc8d893", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:supporting_money": "41b866654bf8839cf7fd380cb8d44277", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:total_contributions": "6c2cc21808b06a38712cc71486be5984", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:total_expenditures": "a257291886b68a967174de7527122b56", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:twitter_url": "26a00a054b4c5557ad9e71069e2b598b", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:votersedge_url": "45e19e7c54fc9dc137529de487691a30", + "build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json:website_url": "f252e39fec5fbeeb9327bdfe174788bb", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:committee_name": "5fea4ee8cf5eed88e01863bcf8c3f3a8", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:filer_id": "d060f88330ce100fe5c751eb0c66d016", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:first_name": "4268ad237d375d155246df59963b279e", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:id": "ac627ab1ccbdb62ec96e702f07f6425b", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:last_name": "fda895f8a782cb4db7eddb799b7af386", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:name": "664052a6d4e6f6678781b7396fe3ba97", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:occupation": "725ecda80499d7b985f0e45f3e3117a5", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:photo_url": "d5c161c8cdf4b392cc2895ee28e29ca3", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:supporting_money": "660cb447c05ccedd96cf649943af8b4f", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:total_contributions": "2205f8c4fea5157f2ebc7b572113a229", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:twitter_url": "b968cb5167cb44b2480eb8ff670973ad", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:votersedge_url": "10c8e80a96ee083bf1b55c1ff4e4f01c", + "build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json:website_url": "bc24352896509b33f86235d362b0a02f", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:committee_name": "ba27cb11bd4e0007a641c13d95969386", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:filer_id": "d12daae596d0c5a484ed44f1d77fe405", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:first_name": "4cc8788c3c7d012ad052ee394490e167", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:id": "a97da629b098b75c294dffdc3e463904", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:last_name": "d0b2f8d7cf33591e869a90f9fffa20d3", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:name": "9d13857a7538316eb0ea006a2b267432", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:occupation": "6ad51ae8a94c96364ad7b5136d7511d1", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:photo_url": "7c35ad79a463d54b3c5720a754c585be", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:supporting_money": "53de48363e6e902ec2493f50451f970a", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:total_contributions": "8e8de1d985fa6abb6cfefc743a2a2b98", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:total_expenditures": "4caf4d18f09b7ed8a1a1fd6998b676e8", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:twitter_url": "0ad7f950e94b94c6dc74c2a44f522275", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:votersedge_url": "e66a75ce9fcfe400603909ac1a5a4eda", + "build/_data/candidates/oakland/2018-11-06/pamela-harris.json:website_url": "91f584c0c1d3b85c1a87c5df60c3dff7", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:committee_name": "3de25d842b9a7cd42bed93d5cd1061dc", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:filer_id": "0e849d75ab61bc3a0616295e66982a90", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:first_name": "4cc8788c3c7d012ad052ee394490e167", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:id": "2b44928ae11fb9384c4cf38708677c48", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:last_name": "6744da2375327424e0c7f1a17ebac2e1", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:name": "91aa5b44aa4efb222c0f3a82b5badc73", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:occupation": "7124fef186152fc318b8862a811a8eac", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:opposing_money": "102ee883bbdbcafd2360553cd1088324", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:photo_url": "da971a6c8f66abd28d60f1694f2112d4", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:supporting_money": "7987c78cfbe57bd046d3685c760952c4", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:total_contributions": "efb5bceb36ef7aff30e6eabecf315c30", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:total_expenditures": "46e6af15486150ec7e7c08088826789d", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:total_loans_received": "2538d7da8eac9d165b42ddd9fa48944b", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:twitter_url": "0cac887351066c31eb32cf0bd9b4ac74", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:votersedge_url": "2f9d9ee47e6891e0c548f9c2f20e77a0", + "build/_data/candidates/oakland/2018-11-06/pamela-price.json:website_url": "37bd24cf1e25de73842ed2c231bf134f", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:committee_name": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:first_name": "c1d4fd6a56b5dee2ed294110790e81ca", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:id": "202cb962ac59075b964b07152d234b70", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:last_name": "86d4a896a195c8f7a6a9f132654b0766", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:name": "50cbacf626cd9b94c665da7e3887e23b", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:photo_url": "c1534c54c60330541d5e37118a5882a0", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:votersedge_url": "d5f3cda78878d8ffd82e437d14426fa6", + "build/_data/candidates/oakland/2018-11-06/peter-liu.json:website_url": "231b7cde919d1cd1cf5e46ab06b5b33c", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:committee_name": "249b3185ba058f094ffe5d73bf50ea6c", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:filer_id": "da8eda7f73263cf10f9ce2210a3675e2", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:first_name": "dc5e9f9bea6a7a49ed46fc4362186c57", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:id": "5ef059938ba799aaa845e1c2e8a762bd", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:last_name": "31fde660129575b36fad64911f1f9189", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:name": "39fe6bd8794e8cb4adf6d497a96472aa", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:occupation": "e5073a2a2223f8fc1393fcddfa3cb814", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:photo_url": "1629f01705e4258556456d4968102929", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:supporting_money": "4cbf1bb5f000eb5a4a62c5f67a969b49", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:total_contributions": "4cbc96cb12580a352b778c57cf1a7b95", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:total_expenditures": "4cbc96cb12580a352b778c57cf1a7b95", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:twitter_url": "8d8e90a62e9eaa017931f93c6c2095fe", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:votersedge_url": "6951eb6a99133615e08da5574103e04a", + "build/_data/candidates/oakland/2018-11-06/saied-karamooz.json:website_url": "3af37759c94b37f0dad7ddd3113691e5", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:ballot_item": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:committee_name": "b299db333b9901e3cc2ef822a44f4ea4", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:filer_id": "3728f106be1075674c809dc518e4217c", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:first_name": "3d6a850e9cbc445ef503a5a16e59c83a", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:id": "76dc611d6ebaafc66cc0879c71b5db5c", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:last_name": "6d9e72ef188c42b2b2a4161de1754ca0", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:name": "0f0f9afac3485860904c106d2b1904cc", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:occupation": "fcd2f5ef6a33d1e7d57e0e003a4f7b8d", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:office_election": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:photo_url": "092b5f5e742673f870dd1b21007f1ba5", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:supporting_money": "b12371c2bf461bfef70810ba21ea875b", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:total_contributions": "a47068f288379b42b971960af1e770d9", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:total_expenditures": "1e15ef277ecf84be4e3a12cb4a5ecfe7", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:twitter_url": "0ebf6032fc2627bf16a33bf4ed0d6448", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:votersedge_url": "23b889077fdd5d218936bec77743474b", + "build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json:website_url": "ee98f5dc599a2a66211fd304e966e476", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:committee_name": "2b43f07b0c7749ab1b727f14d6bf5dbd", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:filer_id": "38a6247b6a7b626c82a730213421e799", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:first_name": "47307c886d12302474b07d4a04b411e6", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:id": "f0935e4cd5920aa6c7c996a5ee53a70f", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:last_name": "dd069d1371cc3c21212406f54247ae02", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:name": "f0f72b352d19266b3b5c77d4c4e80ba1", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:occupation": "67133047e91a360b2f08b29584af705b", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:opposing_money": "ef9bc92fa3d60bc89b44634370c73870", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:photo_url": "aae86d2115978f8c7f7d883f2dd59066", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:supporting_money": "adfdb47c9e4fb90ae4b45ef1d69ca285", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:total_contributions": "aa1ec944b644101c8dc8b67160fb04df", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:total_expenditures": "814ac328cca127a94f853622863096c4", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:twitter_url": "1bbf2998bb2fb300ed000a0f534dca22", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:votersedge_url": "63a0980addbae019777d511b3beed9ae", + "build/_data/candidates/oakland/2018-11-06/sheng-thao.json:website_url": "427698c148fad466993f204b58ee66f7", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:committee_name": "e6dd0df799e59f3457aa8a953b5bd8de", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:filer_id": "f8608506484a9ca3b7a8bb826d96c18f", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:first_name": "eeaafbc182dd3d5c5715de7d136e729b", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:id": "fbd7939d674997cdb4692d34de8633c4", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:last_name": "6efc829fe4b0011ca1459322fad48ba8", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:name": "ff1d7d8746f7c05932142917bb30f3eb", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:occupation": "b7c064e4952759764f6448e5f4576e20", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:supporting_money": "139a71d492f28bb06c15b57e37245107", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:total_contributions": "81137ba4ba8b0ce82a7d0509ab503d34", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:total_expenditures": "3b76de53fce945fd602e43e77dea5039", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:votersedge_url": "d708715cc77092b5cb9d9efbbf727548", + "build/_data/candidates/oakland/2020-11-03/aaron-clay.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:first_name": "3867fde7b5bb23ab7f79ebab36171bad", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:id": "e2c420d928d4bf8ce0ff2ec19b371514", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:last_name": "56aa97db40d517c1d0ba81975261e804", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:name": "9f9d576436110ac768a31962433a0659", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:occupation": "22b2e8c553fc670ab54c8e720c7d52dc", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:votersedge_url": "aee4cee9f44b2092e2b3a79947c3e668", + "build/_data/candidates/oakland/2020-11-03/alexus-taylor.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:ballot_item": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:committee_name": "ec2d263eb04a2a0ff56889a97e8225f3", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:filer_id": "9cab095a62ce6723fe9c6fa8cefd9e1a", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:first_name": "e57c1004a61632ac70f8869cb6679093", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:id": "9778d5d219c5080b9a6a17bef029331c", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:last_name": "80ba01eee2e96ebedbe04227214caf72", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:name": "6c285cf08cf288cf50e6be02968122d6", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:occupation": "1591a3bb60f3d6e04636cd3015307712", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:office_election": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:supporting_money": "0f74c4f3a9306909b773fd26045d3092", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:total_contributions": "95e46071ac397ae7fadc6480d822ea98", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:total_expenditures": "5b00c51d87a13283b07579663edf8380", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:votersedge_url": "013960016c271e86c36ca8e744488ad1", + "build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:ballot_item": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:committee_name": "4e3227a2a83048c89ab98f183209747e", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:facebook_url": "de237a119a606702977887ac5b5ebec4", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:filer_id": "253edcf85d62567fcf050d64fb4070d6", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:first_name": "ba6e9256c04637b7be5706a628d32b18", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:id": "093f65e080a295f8076b1c5722a46aa2", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:last_name": "d46c91d72e60197bfd4fd01d0e7341ac", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:name": "4dba965c979b2df0e4ba4022fe4b2e6e", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:occupation": "c9d83351f827bae0ea26d06fcafe2654", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:office_election": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:photo_url": "87ea546d782a6fd955fcc4a83246710b", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:supporting_money": "374eb34ad5b1ee13972dbdc518576513", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:total_contributions": "50c6cdb65d9c563165f3c3410a8ffa98", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:total_expenditures": "7e4cfc4b6ddabf728248e0129facd644", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:total_loans_received": "2e1a742b7f521f88973dbf35a8cd6b5f", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:twitter_url": "42ad8fd9158a594ea6282b8199584a63", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:votersedge_url": "534a344e4aca147c402d0bdede808b86", + "build/_data/candidates/oakland/2020-11-03/barbara-parker.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:committee_name": "74585763ee9bc83631f9f57b8d4cf144", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:filer_id": "d5ed4b8e8bff480aec57f1566c85d749", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:first_name": "f86bcfd166688e771b2884616e30219c", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:id": "98dce83da57b0395e163467c9dae521b", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:last_name": "ed2b47156a2696db1085fec7dcf46462", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:name": "d7ec55e9dd8b4eda6017ced0e66ea555", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:occupation": "e1052abeefdeef77ab937399b6ca58da", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:supporting_money": "8d1497116e2330f852fe434db70837ef", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:total_contributions": "36cbdeeb87bea4f5851ad3c839022110", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:total_expenditures": "f05e9eadab14008aaa473dc3334bcaa1", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:votersedge_url": "c7f1096ed0ee16c988c8e5acdeccf8f7", + "build/_data/candidates/oakland/2020-11-03/ben-coach-tapscott.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:ballot_item": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:committee_name": "12104c0d41c61449bdd99f2a23d149d8", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:facebook_url": "1bfb4b0ef989db126aeb2e90caf4a9ea", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:filer_id": "96211d01ced863d05a04d43dd8648512", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:first_name": "e146ec01c28e3a40f94915e592825b0f", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:id": "fe9fc289c3ff0af142b6d3bead98a923", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:last_name": "e877314710df433b2862cc2b6cfd4b0f", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:name": "33be3911fbbc67544c4bd7811f7b8a75", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:occupation": "df6916ffe73fa22099a8d41f7a764f9c", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:office_election": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:photo_url": "6460d7f1e9916a2f07407e454ec0bd1f", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:supporting_money": "68ffc005b5089926c078a20aab907277", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:total_contributions": "41f63b7319d53eac0e05f115bf0a8c1b", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:total_expenditures": "41f63b7319d53eac0e05f115bf0a8c1b", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:votersedge_url": "fe4192dd8f26af00419a9489f27b954b", + "build/_data/candidates/oakland/2020-11-03/benjamin-sam-davis.json:website_url": "6f3b048be2c8196e15a1fe4f5940fe3a", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:committee_name": "047a1352d35d102bdc1f1897de3a6ca5", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:filer_id": "e3a5e8cc7e8b529fdf5a1cae2c51f4e0", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:first_name": "a00fcafd61e111ebe1f2e98a3951b32e", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:id": "f4b9ec30ad9f68f89b29639786cb62ef", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:last_name": "56aa97db40d517c1d0ba81975261e804", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:name": "99a00d8c519fe6c48bbcf1da454a7194", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:occupation": "11bb19819b6c3ab7f3cd33b243069c0b", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:votersedge_url": "f380d4761eab064a03b3bf593ec02320", + "build/_data/candidates/oakland/2020-11-03/bronche-taylor.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:committee_name": "c077788d2de92e2868339ad3b859b597", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:facebook_url": "a066e717c7c5a8c332427936ac5969fc", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:filer_id": "2a72153fc4f878f6563ba9fcfeccee9c", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:first_name": "7a80530aa665588c9a29e4511f2d89f6", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:id": "a3f390d88e4c41f2747bfa2f1b5f87db", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:instagram_url": "cd26ad53748b9d6a10bf076224c83d54", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:last_name": "3b5d1561e5fbe9d7143263402e976453", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:name": "2857324911b8a1c92be89ae255c43f4e", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:occupation": "486982879e7a97e6f99cc2bdd7e7c23c", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:opposing_money": "c8d140e9cfaba927f334ebe5530b45df", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:photo_url": "1993de308bf5dc13d2d0e0e582cc6cc3", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:supporting_money": "432f5add8967fbb3f7b059e3ff3ffdc2", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:total_contributions": "c72244349c6b844e369ccc14969bb2b6", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:total_expenditures": "3a960fd638fbcc3cbe70d346adae6872", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:twitter_url": "0fbd8c3bcd9c7b44b092ebea0b97a484", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:votersedge_url": "5bf67a96be463855b7ab94580a0d21b6", + "build/_data/candidates/oakland/2020-11-03/carroll-fife.json:website_url": "8045d612245923a8cba3dcf37d7dfc91", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:committee_name": "81a93518e4fa1588f62e446ad02d6e39", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:filer_id": "802c3b183e1560a39b28db3ec212e25b", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:first_name": "bc7752f7979d1e959d63ef9c85121085", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:id": "3ef815416f775098fe977004015c6193", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:last_name": "a61fe49513d586615deee3469ebaa044", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:name": "15274e479604f7e04db3311ecb201a04", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:occupation": "1bca3b1e0e59ab97abba7cf725947a1c", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:supporting_money": "5b17d0043d585304d7af76d2816b8618", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:total_contributions": "8bb06c6fca8a5e747f1c80df2244c6ef", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:total_expenditures": "1028d6ce33c916582d26d3bb96203a41", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:votersedge_url": "014786b129b8cd915f421cf4eb97c7c0", + "build/_data/candidates/oakland/2020-11-03/cherisse-gash.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:committee_name": "3ad9f9fc74451cbd756ad3b969c96603", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:filer_id": "54ea88c46835bfde9ab7b9f996ea6352", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:first_name": "ae358516d7555dbb5b2273ec3e7fa3d9", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:id": "812b4ba287f5ee0bc9d43bbf5bbe87fb", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:last_name": "196e1126aaf13dc5fdd80d5fff813ec2", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:name": "cee742f9ff8c185b4aeb942538ad3d0a", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:occupation": "dc6e28b361ecdc70b2ebf4e6a4799325", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:supporting_money": "8a5fab64def9cc5da8905a9d06135149", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:total_contributions": "a1a0734dffef6cf7447060aec24f0cde", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:total_expenditures": "c988aeec1e269377220d3db9c9f3b55e", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:votersedge_url": "81ed7d545f1e4a17cd07a48a35eda7c0", + "build/_data/candidates/oakland/2020-11-03/clifford-thompson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:bio": "7ef9aab72a7708b2d4db789210d5c533", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:committee_name": "33724195ef823bbb0a3a6cfa2aa6797f", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:facebook_url": "2ca37513dedb3d1b81dbf565a64d7f89", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:filer_id": "3dca30a040c123b282b5dc31164bf1b6", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:first_name": "97217fc96ce17bb2854a609afd8f17d5", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:id": "fc490ca45c00b1249bbe3554a4fdf6fb", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:last_name": "770eec4e8d02dd8ef43b833c4663a5e8", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:name": "1854bc4752250670af3f18312033a8e4", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:occupation": "0bc996a871068fbe7a9d87b7cd426fa5", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:opposing_money": "f8ca643d45d7e2b1bfe0d4e3db26c848", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:photo_url": "54144d4cae9485b9c264b02150a27c5b", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:supporting_money": "24e2c1b6113ada43aeb57bfe4b469aad", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:total_contributions": "b7dca5fd24697f15528c205d10a74364", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:total_expenditures": "cdbed8331b462a7fbb414a382fdd2d6d", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:twitter_url": "d5c20d26dd907a1cab669d9707c27f5a", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:votersedge_url": "008a3644c38304f30535185bbca6e6e0", + "build/_data/candidates/oakland/2020-11-03/dan-kalb.json:website_url": "4229be3ad5397a25fe5b2c682466ce12", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:committee_name": "76d31655d1256b2cb9d13e4aa34ed798", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:facebook_url": "8e58932d72a5c1c380cccfbef11b0edb", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:filer_id": "c71c1f80a0ee749979dbb75cfac927ac", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:first_name": "b3dd59ce055238599f7bd8362bb52bd0", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:id": "7f39f8317fbdb1988ef4c628eba02591", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:instagram_url": "1116084a1eeccebb9f019efcd3002e53", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:last_name": "fe4a5817cf7441348c7f09af6c663670", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:name": "4164c35673fb7a7b2eb37dc32591a797", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:occupation": "b7c064e4952759764f6448e5f4576e20", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:opposing_money": "d0e2047f0977162a0c25ed691534588f", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:photo_url": "e04fe67f56da72fadc4c94339be6fcff", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:supporting_money": "c5dfbdea187bd41cbb89833b7253869d", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:total_contributions": "196ef1c110f74edf2bc386159d8b909f", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:total_expenditures": "cf0c997f41606465aedced9c12ea9899", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:twitter_url": "1116084a1eeccebb9f019efcd3002e53", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:votersedge_url": "8f08c396e89b7f5cd3f8e6fc8b2d0de3", + "build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json:website_url": "86458ea0c934e134e6fa15078da1f7f3", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:ballot_item": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:committee_name": "5c7170c95dcdb2e9a25043b350f108a0", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:filer_id": "621f3aea3bc4c519bd08309381b90327", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:first_name": "fd5c39e171b73e461948c73e35eea161", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:id": "072b030ba126b2f4b2374f342be9ed44", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:last_name": "886e837ca4bf02e568e11d8a400bbff2", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:name": "3ae3455fe38d1ce4b59f04da070f2089", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:occupation": "2ca9d11eb578d83942e83225e4f15fc7", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:office_election": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:photo_url": "c665dc6568bb283de8cab168e67d63e8", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:supporting_money": "ebbff082085814926fd26d2d32a311e1", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:total_contributions": "8caa258c53864bdf243a7b8fada1f260", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:total_expenditures": "7ae4310b8adcf49307f2cb60a655615c", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:votersedge_url": "24e682e272e4944ca14b1a7d2137723d", + "build/_data/candidates/oakland/2020-11-03/eli-ferran.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:committee_name": "4d6ddc42ce41b614f26ee4c0994feb75", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:filer_id": "141cd536690da10b4c5e07c97a9ac255", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:first_name": "230c7459bc1bcf86536973658cbd735a", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:id": "14bfa6bb14875e45bba028a21ed38046", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:last_name": "56aa97db40d517c1d0ba81975261e804", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:name": "a3a10c007584cb5b5c27c15c65990ac3", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:occupation": "a53eff34d38b833f8d91fdeed0a4dac1", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:supporting_money": "493ac59dca73933858d23aed8251e1c2", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:total_contributions": "ebcb7cde6ad26b50da843d0b9e0e6e03", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:total_expenditures": "1ac4bb121aa666d62c9d2256bad7b1be", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:votersedge_url": "5bdc3f1399402de07410f1078bfa7d8b", + "build/_data/candidates/oakland/2020-11-03/faye-taylor.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:committee_name": "00c73429e6b9a709f4090d51ed66a19b", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:facebook_url": "a5c5f82a2df318814e888f896dea14a5", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:filer_id": "210894b8ed1e9deb79446c9cdba1b909", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:first_name": "f658e2179e44fa86fbe2801b2308a7c8", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:id": "92cc227532d17e56e07902b254dfad10", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:instagram_url": "3a68ddb79056044321c895a571571990", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:last_name": "5f94c83a8f8c8d055aa9d0bcdd18d6de", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:name": "d626e108dcc476a886e13d6ea8e8016f", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:occupation": "f120c7093af6c3d85ea78360a59fae58", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:photo_url": "af7b8ad45a327a671f8007846cb734a1", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:supporting_money": "384f63084527399afaf102787025a3a6", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:total_contributions": "0090c9ba32ee2e6db9ee0b971b74b3c7", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:total_expenditures": "3d41909bf0b9290d7a2e76b487764941", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:total_loans_received": "4cc9aa02d3a8f0fa7546269965f2b713", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:twitter_url": "3a68ddb79056044321c895a571571990", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:votersedge_url": "1ccaeecbd9922438d0de6dee017757ae", + "build/_data/candidates/oakland/2020-11-03/jorge-c-lerma.json:website_url": "fa92cd423e07b6a9aa0fdfb95df7188b", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:committee_name": "9b6d37ae334f5ac82aa7e4d3455c5733", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:facebook_url": "ef28466dde2fe95a8700ec6fcb0c0f61", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:filer_id": "1e5e5d73755ec708aa1ea7bb9669acff", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:first_name": "b1bacfd4d534d4f92ba1b1c3191ad387", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:id": "26657d5ff9020d2abefe558796b99584", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:last_name": "ac10d1cc5084f020ebbf792c8cf3ccfe", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:name": "bd0b410674af9bb394eef715d0c90748", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:occupation": "0326663b887bde5e0f423d9944f7a65f", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:photo_url": "045a8d1ce02ec1dd497fc8778510d315", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:supporting_money": "72ccacc1ecb2beff6f43f42608524477", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:twitter_url": "521c15be6ba58db1a0f93352636f542c", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:votersedge_url": "698e7b0f21c13ebf9afef6d84c58432e", + "build/_data/candidates/oakland/2020-11-03/kristina-molina.json:website_url": "0ff568b68d0a682a7fa463f01b220389", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:committee_name": "ec9380ee453c8c1e103ba2e7e78c89d6", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:filer_id": "38c60691bf23548d4f40a7c9473ca90a", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:first_name": "091d946d8294040ffdb20130319f16a0", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:id": "7647966b7343c29048673252e490f736", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:last_name": "52b751f1962fc2e8a39df32fc8c12d4b", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:name": "ae8b39a13637edfde8f7cc813baa67eb", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:occupation": "486982879e7a97e6f99cc2bdd7e7c23c", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:supporting_money": "87fe2322ba409298ba8186a127de1a7b", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:total_contributions": "1f37e313db1980538ceb30e5aa0e71be", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:total_expenditures": "c07aa70dbf0fd3fd3d7d9f5552c22cf7", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:votersedge_url": "f91d8d909f4504605efd1f4c1c9dee67", + "build/_data/candidates/oakland/2020-11-03/leroy-gaines.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:bio": "00c80276e4e9177f659647ebb9c5dd64", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:committee_name": "5414827899e1dab7b45e0f3f22af511f", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:facebook_url": "331084a79c13f526b7e23a3047915be6", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:filer_id": "8eab2d6ac4a44e84b74dc5b7b382c234", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:first_name": "b4236c501f72d1f13b81b6386221c4cd", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:id": "7cbbc409ec990f19c78c75bd1e06f215", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:last_name": "b438bd71af6f104441cfcd153f5110d6", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:name": "a06f34db85b02df54af971b294a0d197", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:occupation": "a3fa1aa0a0e1f349f2927a35a7167177", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:opposing_money": "1ec298573a881521dc63e76dabab1a13", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:photo_url": "bab173efa44378e28d1fe8a27f9fddee", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:supporting_money": "5c1fa36c35bad710e6dc093f3bc4528b", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:total_contributions": "f30dc4d2e0629a0cc949f687c6b6dc77", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:total_expenditures": "c09d0c857a28423e259d56b9eff351ac", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:twitter_url": "ff0fc37a4c7a077e9ef973cca5bd83ce", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:votersedge_url": "afe92af3e7e39e1caf006c4ca0a86e18", + "build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:committee_name": "863388a8fc9be6873cb88d337106aae1", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:filer_id": "429b73f12af8200111fcd0e9d607f112", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:first_name": "5d9185a77dd32e2ee606dbb7a0351b6e", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:id": "68d30a9594728bc39aa24be94b319d21", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:last_name": "2f48e2f1cf6c8249ec62e11168c72291", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:name": "2418dbeb5d048a8ae0fdcb29344628e0", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:occupation": "aaee2bddb9e7d7820a5894d167072f4c", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:supporting_money": "7a30b5215ab3b0095e1e89b72f401f71", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:total_contributions": "a70e54bb2dac14158064935f09bafeb8", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:total_expenditures": "3961d935046d5bb01d2682230d1d58f8", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:votersedge_url": "89cae14fe532bd9222f3591bd2be4fe0", + "build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:committee_name": "bdf301887ef9462630be6b3fc3d08a6c", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:filer_id": "90db223de243d0a3fc29ef8a64b97a8a", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:first_name": "c2426989400bc1e81a1944b56b18a7d0", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:id": "28dd2c7955ce926456240b2ff0100bde", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:last_name": "6c7564a58db9393a175da5bb1b2d940e", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:name": "b7ba3457885a60661b2f4b606ef8b452", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:occupation": "1d200bc86cd2e289ed8f32e27e111f5d", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:photo_url": "5959bb5758e14d0a41bff6c36193bf67", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:supporting_money": "a6f6f2c55870fbfe346ec30cc2a711da", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:total_contributions": "96e3496cf8fb7aa228481a429781a3f3", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:total_expenditures": "b352639235bacd2e7a92d65a7360c38b", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:total_loans_received": "7d675ddd13adcb50b6921ea50bde70a8", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:twitter_url": "8d0d6513c832afe1bc6b205d721246e5", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:votersedge_url": "f0d3dc27ed16b11feae770ae6a73ca70", + "build/_data/candidates/oakland/2020-11-03/marchon-tatmon.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:bio": "8a0f27df063c7ea878dcf0ef02376b79", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:committee_name": "03ae6c11620d5fbc9a7b20b199874580", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:facebook_url": "6c701a7c2100466778a99cec3b992515", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:filer_id": "4422155931f1041341fccc0a9a300a2b", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:first_name": "da6fb6f22dd3608d423a856a0f53fcec", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:id": "d1fe173d08e959397adf34b1d77e88d7", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:last_name": "ab59b4a74f74d7a6a7e85c18abac3b4e", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:name": "59a393a6f7001ee89a2d69ab99664141", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:occupation": "b34ec348e667a7bfb7b8174277b163e0", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:photo_url": "53cd65794f2fe9e93c91bb44e22c98de", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:supporting_money": "c7fbd7f6d386bc584450f9365dee906d", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:total_contributions": "38ecb7d009ea9e0de2c3286842d66f2d", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:total_expenditures": "ccd97f2b061caffbca5b1c6030ccd2dd", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:twitter_url": "55bd11ae720344f4f9ca5d6cc3115dac", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:votersedge_url": "374bce49ba6986f849c383b76955bdb9", + "build/_data/candidates/oakland/2020-11-03/marcie-hodge.json:website_url": "a97daf39d2a5dab8b45df8b482a85955", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:committee_name": "c2a7a3fbfc242658061e2a286de44d6b", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:filer_id": "06d21333949a0f91e8eb05d29328d06f", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:first_name": "352df25f7db4f3dba57a9ca210ea096b", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:id": "c7e1249ffc03eb9ded908c236bd1996d", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:last_name": "637d0d6e05a45dfaa58b0ae9022d7c85", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:name": "a0093f3c37acf92140bfa624f4815164", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:occupation": "475e90e904294abe90f9dc40b1b9a4b9", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:photo_url": "be433432ac3f4aa1b6e6f33b6c7e69e8", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:supporting_money": "92c65435b48560f0a7d016dd9c8c284d", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:total_contributions": "d451c0f0f9bab64a19ea1b81a041804c", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:total_expenditures": "5f2e76ce9c78c21fd613f94a91024772", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:twitter_url": "bcfd97c1a756933797e5ddd8e6ac292b", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:votersedge_url": "a9ae7630a4959bbdad6fb91dabddfaba", + "build/_data/candidates/oakland/2020-11-03/mark-hurty.json:website_url": "54d2126d7be9a6174a68e5b0367767fd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:committee_name": "1fd11866a236a622b3d692f98474e02d", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:first_name": "485a49287610647d4ddb34d6cc882b2c", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:id": "2a38a4a9316c49e5a833517c45d31070", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:last_name": "d849d4a0029eaa9496e5ef9b92adb3e9", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:name": "5d19067ad86a0ba961d7fe7a524a0d87", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:occupation": "f120c7093af6c3d85ea78360a59fae58", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:votersedge_url": "14ffa43f3faaaf6413d0f8154af0ca09", + "build/_data/candidates/oakland/2020-11-03/maximo-santana.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:committee_name": "aefe33bc0ad3bb48e3f844c80ed93935", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:facebook_url": "72bdbef4bebd93c12be2ab31a43d2f18", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:filer_id": "bc9642f5ccbc32638e95f06e8dedac61", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:first_name": "45c866d5c4fda111dcc05804b37b27da", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:id": "735b90b4568125ed6c3f678819b6e058", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:instagram_url": "652c1c267dfde83b52e50592f2f7776b", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:last_name": "bdc01cae495feb24f1502c62ce03c8ce", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:name": "93b66190eaccb487416fa8a5b21f2ba2", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:occupation": "f120c7093af6c3d85ea78360a59fae58", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:twitter_url": "f09a3b433e6b0a3ef61993bc57897edd", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:votersedge_url": "5d5093f337856d6922fc75d479d36a06", + "build/_data/candidates/oakland/2020-11-03/meron-semedar.json:website_url": "e05260466acfe6ae719b21158ff249ac", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:committee_name": "5ca109c410883c6a20df0b1c9e6097be", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:facebook_url": "3daf3ab91870724a9a7ace638e18bd82", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:filer_id": "bddba705e32d125f741433470afba8a7", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:first_name": "c9c61bdb7387d73d81d7de4356fc24c4", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:id": "8613985ec49eb8f757ae6439e879bb2a", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:last_name": "5089bb111195d66765b96aadd9ba4442", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:name": "184dc5ee4208f52e695176486b395e17", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:occupation": "f120c7093af6c3d85ea78360a59fae58", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:supporting_money": "d7d89c9f1b668eedac947b640c9f9582", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:total_contributions": "aec0c449251078ca9c567c79e719d837", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:total_expenditures": "fc95054e6bb56fb4bac5584095c023d6", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:votersedge_url": "5f0d862172d140ddbcfd5b304b8d2616", + "build/_data/candidates/oakland/2020-11-03/mike-hutchinson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:first_name": "3265bf9ee3078d31e343fe37846955c7", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:id": "03afdbd66e7929b125f8597834fa83a4", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:last_name": "5825289e3c17b90c8a9431cfa73baceb", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:name": "33f6b74cdf3f39b3a61cf14a3ff0d4c4", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:occupation": "c6a2883e30cdf7e7997d907be93e1ead", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:photo_url": "ad682e689bcfc47d3d3262f3cb85b2b8", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:twitter_url": "e5eefeb4e1f434b7552c501a08db1d85", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:votersedge_url": "22b78a1fb8df805afee8260e3fb2579e", + "build/_data/candidates/oakland/2020-11-03/nancy-sidebotham.json:website_url": "bdbb69727f6f11d687982ddb4e5355ce", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:ballot_item": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:bio": "2d7243fe9eafcd894ef5532af9b66433", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:committee_name": "da8c147cd3725d5c5a714cbd04a33964", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:facebook_url": "c2ec70286acf87a9f66398fb1533a6d6", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:filer_id": "d5eae610280afcb25b1b77d254753aa0", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:first_name": "c7410681c9a5612491fd0fa2e6f2605d", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:id": "ad61ab143223efbc24c7d2583be69251", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:last_name": "91c4eb735b28a11ae7900f72ff346fbf", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:name": "f69e76d91e9ad52578b43ad36cdd4caa", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:occupation": "50235e56d6c9f82c83ce260168e465cc", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:office_election": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:opposing_money": "28bdd36fe0fe598383f7a621df3b590f", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:photo_url": "c2f87472308ab67c031c9d381ac3c38c", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:supporting_money": "368381654fb2c456212ae1cea284e355", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:total_contributions": "193fcad8ecaae939e047b1c740ca249b", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:total_expenditures": "0f461b890241b2b7225d8ae8343341eb", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:twitter_url": "f8e9a8b222fc239bcebdf21f1bf6196f", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:votersedge_url": "1395f39002cb489ec7502da29a8241b7", + "build/_data/candidates/oakland/2020-11-03/noel-gallo.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:bio": "d72806f6c38b804ef7c0f5c8c99c3df9", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:committee_name": "0d06685d84a47e28a69fe07ced7aa0fc", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:facebook_url": "9c506ef45b2a932bc2747e5d55f2840d", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:filer_id": "2225a0d8ffcb64c8cc6747bed24afb68", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:first_name": "8b450e64baee8642ec79f32a99444144", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:id": "44f683a84163b3523afe57c2e008bc8c", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:is_winner": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:last_name": "2d9943cd802bedb8c14d8b0251444656", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:name": "2e2e05a62560df239578c47adfeeb68c", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:occupation": "d2303e2280e6977dd03ad600ec2ae923", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:opposing_money": "e50eac8a23ae9eb99ddc26db8598eb08", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:photo_url": "a109ef081bade855bd65a029f90712b7", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:supporting_money": "f226fa1a8fdbc2d18791454f4b274fe9", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:total_contributions": "dff6f6733e55c0966afc463d2ff07999", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:total_expenditures": "62b2cc3d16deeaaae47f95ad23425277", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:twitter_url": "43e6f06f5889f97d1c7b50c947154411", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:votersedge_url": "7d88b2e1a4cda6c759f12923477dcd8f", + "build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json:website_url": "ef4e2876e18fc96d584307215103c6a9", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:ballot_item": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:committee_name": "3d4ae7750c84d0f281b8922ce572d34d", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:facebook_url": "c01b51d8b91666f0f4f2d440cecf25c1", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:filer_id": "fc3301b521fca3007024d3eef18ae2b4", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:first_name": "e30cf5d81b6206abb8d00ef907038481", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:id": "d09bf41544a3365a46c9077ebb5e35c3", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:instagram_url": "2a90e5186d04fe6014be1a4dba3d15fb", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:last_name": "0d3d7f3bb9d3a0953ecf8bca288d9a7a", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:name": "f3850952e7183d2197d7bf1fe6bc0729", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:occupation": "60d4b795b372cf4618619d721aa21773", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:office_election": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:photo_url": "e05ec929e87b8278b673d4d11eb65124", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:supporting_money": "ae96344d80de279b33250028363ba3d6", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:total_contributions": "5841ad8731cdc8b00c6351bee647c35b", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:total_expenditures": "4d744a0a841a994fc3b8d4e3aee67e20", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:total_loans_received": "1434f81012ce9c2aba692d5177889ef4", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:twitter_url": "9d8e83d3788ed5bfc36052bdd5dc9226", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:votersedge_url": "406fb45083eaeea33d1134cf79fbf8ce", + "build/_data/candidates/oakland/2020-11-03/richard-santos-raya.json:website_url": "17445f5811bdf8b4f5ffc0597c5584e0", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:committee_name": "f626073908cc80e269d0b04916c0fc5a", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:filer_id": "c7d1be4a5a1daf87b9bf31a68220996d", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:first_name": "c8b39e1aa0fc83181cf7db6d5c8ea6f8", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:id": "f033ab37c30201f73f142449d037028d", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:last_name": "5ed090e45d3c033ac1bd9138068508f3", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:name": "482d81c1046ee9700b3cbb0a69dda9b8", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:occupation": "625fd73d5998485f7eaf7da8ef33557f", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:supporting_money": "ac685ae01f758df77bea177c2e9d5289", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:total_contributions": "0229c3a4158a97e6938445482eb2239a", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:total_expenditures": "a989a71276e912fff9822e4051bae01c", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:votersedge_url": "080818d70c773e3397fb93d9f89fe0ab", + "build/_data/candidates/oakland/2020-11-03/robert-bob-jackson.json:website_url": "bbeb1adba741d807a6b319d76423899e", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:committee_name": "ef2201dfcf9116b5847b66341085478d", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:first_name": "9776ef948ef12978828ba7a687433819", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:id": "32bb90e8976aab5298d5da10fe66f21d", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:last_name": "ddc179d178b4ee9e5b96cfdf8e2d060a", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:map_url": "a3ee4f2bbbc94c4612b8e7a10b45bef3", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:name": "2ed16895cb8bbcde38b0fa2ab96e4118", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:occupation": "b7c064e4952759764f6448e5f4576e20", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:votersedge_url": "351d15f60b7a2430a74e5e28f241e41a", + "build/_data/candidates/oakland/2020-11-03/seneca-scott.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:committee_name": "8470f3966ed39b7f140704397e2fbcf0", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:filer_id": "e51f6afe264127facef3851192523805", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:first_name": "f1303f178b764986dbc55f51ed544a52", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:id": "54229abfcfa5649e7003b83dd4755294", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:last_name": "8ec31f1ec6224bca2c70e341699d259c", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:name": "c5cd6791dc9d9829564cd60dd3f5c1fc", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:occupation": "83a4bf06a89ea45c8d901853301138c7", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:supporting_money": "076e8cfab3892f91b5b83f5b02c6bf55", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:total_contributions": "3fce30efa64107658e79523e6df1cd3c", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:total_expenditures": "3a352242f828bb9c7c3ae3a5c3e1f056", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:votersedge_url": "0d45c2d256133bfbe10ac5155b75f974", + "build/_data/candidates/oakland/2020-11-03/sheila-pope-lawrence.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:ballot_item": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:committee_name": "bb189e3e7b1f5e7010e0a0044cbf7550", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:filer_id": "86bb2b67e199bd5cd92166a164c38776", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:first_name": "c694de684ccaacc93f9cd3b84f10b54a", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:id": "43ec517d68b6edd3015b3edc9a11367b", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:last_name": "4e8089695017f5126b6564da119684a7", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:name": "ac2a4bd9d668c565e822800f13fc1ed2", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:occupation": "13b00a734f27893965dfeaaf72c889c0", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:office_election": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:supporting_money": "58f94e8ed3b60b8c1b5384321d8774c7", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:total_contributions": "740ac294e64275dedc766369887de09f", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:total_expenditures": "f83b38dfca25fd1eaf7a90bcf31a69d0", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:votersedge_url": "78ecc574bba1a81358fffc0aaa986790", + "build/_data/candidates/oakland/2020-11-03/stacy-thomas.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:committee_name": "48e9f9f3f995f5bb5b6ca539153e7968", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:facebook_url": "9c666d810de5076d8039b4b7debe4fff", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:filer_id": "6ca4416f2703cf4c1bd20e3d2b7010a9", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:first_name": "74b5cbf924cdac228cde375d33029507", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:id": "3295c76acbf4caaed33c36b1b5fc2cb1", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:instagram_url": "22caa287cbcc2bde9930418bed00f2de", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:last_name": "068227555728adae663879f72bb53af3", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:name": "62f4a9d3fd5f705dc34d6d9cb88b14fe", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:occupation": "ef3874c9993b4fdbaa2bc424b7d4deb3", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:photo_url": "f813e6651f850486a6f7ae6d82ceb192", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:supporting_money": "ccffa8c35731af05468d6d3219f8da0d", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:total_contributions": "8a6f1fee330b4265044b14f8e151b676", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:total_expenditures": "e4b1308f2fe2aca3ea73d602993becfc", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:twitter_url": "45cc70511a62b0f59482430c121cf3c5", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:votersedge_url": "62c6f3f32e77659309d48fe7393963dc", + "build/_data/candidates/oakland/2020-11-03/steph-dominguez-walton.json:website_url": "c69deb62a16927d5d3ef65d3744f5bc7", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:committee_name": "c96e18e87595aafcc56ff534aec7511b", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:facebook_url": "94ffaefce94c293dd96045b7ab9e1f01", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:filer_id": "a47c0516ef86a70409957ca39d8b1871", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:first_name": "c750c79f9e7186a72a8f16540e8e5e01", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:id": "35f4a8d465e6e1edc05f3d8ab658c551", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:last_name": "5b5190186e7724ad08df105441b9ca15", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:name": "9917641f619efc3f59a84ea6e376f46c", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:occupation": "fe72f43eb38de681697260baac72349c", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:opposing_money": "ef9bc92fa3d60bc89b44634370c73870", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:photo_url": "4426941f40e72c672f1fd592536d0b71", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:supporting_money": "2d32435468a3bc17c932cdb909cc2d24", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:total_contributions": "0d2a19abd68b67827941edfbb4df6881", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:total_expenditures": "1ef1e1f39d4c8b67f326cdc301778a7f", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:votersedge_url": "450c113cb515501a14e3963afe98f302", + "build/_data/candidates/oakland/2020-11-03/treva-reid.json:website_url": "24b42476bc53f7a0b876e8cb84c73ff1", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:committee_name": "85ac22750ec21e940c142ad9c51717bf", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:filer_id": "ecd16a5bbf20a6a1bef98915f5a9708e", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:first_name": "a891e20cc8dfd02ad803b2b9be9bf261", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:id": "ea5d2f1c4608232e07d3aa3d998e5135", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:last_name": "b11249f43ce6b3e19ba1c9eecb5fac42", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:name": "5b61cd5423f5908c412f8a340898e765", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:occupation": "a962b48493ed6b130a0f08fa9da59017", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:supporting_money": "c77c4b9afd60352a5f53fe39af8e17bc", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:total_contributions": "5d3c736108978ead3961fa1c5df8aa9e", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:total_expenditures": "5d3c736108978ead3961fa1c5df8aa9e", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:twitter_url": "498ca9ef41de08093f84fe797d99c80b", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:votersedge_url": "1730625fc18c4a6dc119e1f27a3c0744", + "build/_data/candidates/oakland/2020-11-03/tri-ngo.json:website_url": "bf0a1b4e21c0eea5849f5abd05da41e0", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:committee_name": "01bb17caf16b9fa0b266e0926368fb7a", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:facebook_url": "c2e0ee41820ccb32abf27e3f7fc9d50f", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:filer_id": "08ef1241fb8601f29032be2cf562b844", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:first_name": "430f4effbec6a8390276d9c2850cb084", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:id": "93db85ed909c13838ff95ccfa94cebd9", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:last_name": "f7876962086c7eac2015bd0afa8d6c70", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:name": "3164228beb449ee5977343a9c1687a41", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:occupation": "017443828d4e7288629dbdfedbbaefc0", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:photo_url": "70b8562f4c56fe5daf24a23ac62b12c4", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:supporting_money": "5e48cfbe59f9a6d6caec06ae35a03eb5", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:total_contributions": "d29642c7f109ed7b9131dbe6e990352b", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:total_expenditures": "361e18ce9bf678549019c17c2d98e8b2", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:twitter_url": "d23644bce3ec75d117fb6fe55dee87c8", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:votersedge_url": "eef67ebc16d7316e28b5f4faf3549436", + "build/_data/candidates/oakland/2020-11-03/vancedric-williams.json:website_url": "a327b2ee608d6b33962066d055947c92", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:ballot_item": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:committee_name": "24bb48275bceb61ed542ae2c04e2bfc6", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:filer_id": "9e025946f0edae693cbce0e9edac8544", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:first_name": "72a98a92e6963817555d64b412f08c41", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:id": "e2ef524fbf3d9fe611d5a8e90fefdc9c", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:last_name": "e56539e0437a862ae66b2376c58683a4", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:name": "3ce82dc1550b729c53eff27b01c3aad8", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:occupation": "075a93c2852974473c404bfd88df8b8d", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:office_election": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:twitter_url": "b6799a302cde89e675f7d178e8f3d45e", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:votersedge_url": "fc4256576204a2ee6691a81dfbacedf9", + "build/_data/candidates/oakland/2020-11-03/victor-javier-valerio.json:website_url": "34691a1e0ea85da96fcc44193bfe1cc0", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:ballot_item": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:committee_name": "9779f253dd8c68649ebacf5cfdaa659a", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:filer_id": "2a47099b85cd710e1a4a96aebe70cb36", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:first_name": "6cfbd4d20822a1cb5684abfb56f02923", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:id": "d2ddea18f00665ce8623e36bd4e3c7c5", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:is_winner": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:last_name": "5f46c3cdfd104e6970079ee1406abe95", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:name": "79957802b9499f960e83f210c1a62ae9", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:occupation": "77ea29756df0a8eb052e748d963a1131", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:office_election": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:supporting_money": "0c235d82cbecdc08c96c3d0e2ad72654", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:total_contributions": "cada2eed13a4771aae2160ba7d6cd3ea", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:total_expenditures": "d12c19e70d99bd7536a0f87c7bc613be", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:votersedge_url": "e746aef456effbbc4634693d9bf5a020", + "build/_data/candidates/oakland/2020-11-03/zoe-lopez-meraz.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:committee_name": "65faffd9af16e135ede9e996027a8fc8", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:facebook_url": "675b33481b10ad8daf2a65e45f64d269", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:filer_id": "a0e28764c8553ca63e149f8887d2470c", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:first_name": "eea5b2dcdc9203ad437a05c1f235079a", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:id": "1f0e3dad99908345f7439f8ffabdffc4", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:last_name": "2c8afecb549f2ba9eee06467fa8a34b3", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:map_url": "0c10ed64904ef1bc859998f9e94a8645", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:name": "b9e9a1757baea2503e9ff75b47772ae8", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:occupation": "7124fef186152fc318b8862a811a8eac", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:photo_url": "25716aee98b835612de91ccda5658ed4", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:supporting_money": "a1964bc84df2d23ed77064810dda869c", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:total_contributions": "3eb2e472eeae624fbb84c21611e8dd04", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:total_expenditures": "3065521cb640e38d62bae9909a6ded74", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:twitter_url": "a7f2eb13d212e322cc29c65b57c76c3d", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:votersedge_url": "0cf933d917d2dce9ceda32a2012ec3d9", + "build/_data/candidates/oakland/2022-11-08/allyssa-victory-villanueva.json:website_url": "326404be8c4dbe0e10d2b5f3bb9b38db", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:ballot_item": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:first_name": "ab8a182f2d0653ad50201abb0642da19", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:id": "98f13708210194c475687be6106a3b84", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:last_name": "2f8915db98fc7aaf70caca4df9ecdc6d", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:name": "76884662ac75e9979f6b9b68f6426a1b", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:occupation": "9f5c5a175512088ebfdac5a10f9ecd89", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:votersedge_url": "872f09b37e5bbd60ed3628950ddb367a", + "build/_data/candidates/oakland/2022-11-08/courtney-ruby.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:ballot_item": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:committee_name": "925fb0af894e0fd2f05a1f598788e216", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:filer_id": "ac348414cc9fc1e1fb08b5aa20234934", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:first_name": "fb69c061d20ee5aedc0a28f2e79efab0", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:id": "3c59dc048e8850243be8079a5c74d079", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:last_name": "f3342d6833fae047e389c9edc6e6a137", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:name": "6633d30f103f2e84b1945f49fb76984b", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:occupation": "b34ec348e667a7bfb7b8174277b163e0", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:office_election": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:photo_url": "f3f43a5312755d6f2ee9b8929877eb9f", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:supporting_money": "d32b54cafbce958a5923605a9e922d74", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:total_contributions": "6eb62108a174b94f63f6b6f7c14fe6b6", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:total_expenditures": "6bf27b23ba422b0e6e8c2b9e06af60b3", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:total_loans_received": "3b2116aee387c0ad8f897f6320bb4234", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:votersedge_url": "7a23777ae0ed42447b5702c6051fd308", + "build/_data/candidates/oakland/2022-11-08/david-kakishiba.json:website_url": "1d8921c56e4727a9561c9ef75a3bab96", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:committee_name": "3be5db55c6e6d6431fb522e7d2c55465", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:facebook_url": "970f1815a334a9cb4bcd0b8fbc59e5b2", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:filer_id": "ab991820c7b739a0b58859b3dac9c958", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:first_name": "b3dd59ce055238599f7bd8362bb52bd0", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:id": "b6d767d2f8ed5d21a44b0e5886680cb9", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:last_name": "d42ed0760daf032d0ef96c934d0cf82c", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:map_url": "4fa4af41bca7504e1efe0565c2c030b0", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:name": "1eb0dfa8596d42d3f35c8ff102739a59", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:opposing_money": "26350d6f42a292a65352134b7460cc12", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:photo_url": "1645f1eee8fffa8d9c3a0f78f987f7e8", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:supporting_money": "e1f73c4333703c8349ad112b3f9dd50f", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:total_contributions": "2ed3c2cc161b6adf3cb15a8e2b7b3f35", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:total_expenditures": "42418b8ca17225b4391862dc8180a483", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:votersedge_url": "0f1118e887661d82ad6c166c00fb90ea", + "build/_data/candidates/oakland/2022-11-08/derreck-johnson.json:website_url": "86458ea0c934e134e6fa15078da1f7f3", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:facebook_url": "4e59aed0691db254cb2d80379cbe0903", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:first_name": "bbc4da62983779494d0ea3658092ffcb", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:id": "37693cfc748049e45d87b8c7d8b9aacd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:last_name": "48b238356d65b7a7f06b35d3d1690edd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:name": "a64cdb33ba613f24ad0d966998165a1d", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:photo_url": "e05a0741ecc0e11b0ab539e9b903ad42", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:twitter_url": "e16b26c59112ac8e4482dcd3829794e3", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:votersedge_url": "0f1118e887661d82ad6c166c00fb90ea", + "build/_data/candidates/oakland/2022-11-08/derrick-soo.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:first_name": "ea636408e760e96b043f1bf764e65a69", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:id": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:last_name": "caa51b7e58b14ba562b3ef2f5132d7c3", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:name": "5a6a13d248ca2b646d4ce6aaa7e319c1", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/desmond-i-jeffries.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:committee_name": "195a8c443a8459823547b46f676c6bef", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:filer_id": "a3e17d326e74131ddbe2a494ba8b2c0d", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:first_name": "82dbe61d1280e6749cfe11772e0ffc1e", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:id": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:last_name": "ca74e3d872f09fcaa8c43aa78fd035a0", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:name": "4c198e565be40469189f5b792033e875", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:votersedge_url": "0f1118e887661d82ad6c166c00fb90ea", + "build/_data/candidates/oakland/2022-11-08/elbert-owens.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:committee_name": "3530c3a5cf36237bd61a712f9004c521", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:facebook_url": "7cc26660566852e90cfbc5d71925a833", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:filer_id": "19ec0eea6d37da2e9918e1ee43e8ce8a", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:first_name": "89ec10a5d525673a05758de7ae60d7ca", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:id": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:instagram_url": "71dffb71b1c8df3996c9da6258e5a587", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:last_name": "ab59b4a74f74d7a6a7e85c18abac3b4e", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:map_url": "79eaf19d8b7c4fcaa3406ff6f177bcdb", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:name": "7a22ff5987d91b66b495fd9ee7a0ad5a", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:occupation": "6e691e3ad6529ef4003348855ac3cbbb", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:photo_url": "5568615fae7691feae99328c2858954b", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:supporting_money": "e3560ffdfcc59e998b228d6ef4cd573c", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:total_contributions": "f89e920b866cb5b0bd91607a4bae38b6", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:total_expenditures": "f89e920b866cb5b0bd91607a4bae38b6", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:twitter_url": "eac564414a3a3cfaabc4b71f7836579c", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:votersedge_url": "03bddc77eff6f437750e1d0a55c7efbe", + "build/_data/candidates/oakland/2022-11-08/gregory-hodge.json:website_url": "0b16e93a17eeed71d2e5e6b49eed0d35", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:committee_name": "2ea589958d956b6862f45e3c4e260ff6", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:filer_id": "ca67e18eb5eeaa9d9370ed225476fdf0", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:first_name": "4a2ba1003965a9ba0bd0f20364ee649c", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:id": "02e74f10e0327ad868d138f2b4fdd6f0", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:last_name": "85d511167582776ed50035e7677937e0", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:name": "11e7ca5bb88f21c5449610f4d32a45fc", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:occupation": "46217dca8c993e72be1b9bb6b682e6a5", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:photo_url": "8c4c33a2fba9e3e3944991d8d080a6d1", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:supporting_money": "e3c45b226c8ceda5f823e8c00fae30e1", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:total_contributions": "276e59676f6c5f641e6f979e43984b76", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:total_expenditures": "99d0a5dcbc942307b435f86cfc7b40d1", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:votersedge_url": "a560cc5de445412e1d011930e322f48b", + "build/_data/candidates/oakland/2022-11-08/harold-lowe.json:website_url": "5d4147e3a17348fd360940d5001c1147", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:committee_name": "43241a18ca6b77bcc0e5f45b1b27d057", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:facebook_url": "7ea55f582822039a87f64592112c6b74", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:filer_id": "e40db0f9682c910744dc91271d9d4558", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:first_name": "9e6160d8ac5cfbaa15cc829891a544b8", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:id": "33e75ff09dd601bbe69f351039152189", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:last_name": "fca927981b16c43ba2760aaedfee919e", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:map_url": "34e227c29bd7ad4568ce0e977f147f02", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:name": "15418c82d8e03ed18a35daae4a5aa8b9", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:occupation": "9b2acbedfe678f0e85ddd17fa7b512ca", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:photo_url": "88bbd8a9d28a7f8a811ae842ecaae5c5", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:supporting_money": "39a1d4a50b9b597c49edd1442b6d2865", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:total_contributions": "4d24f513de7d6577ce3df62c3f138484", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:total_expenditures": "2faa9bc6d6dbc8434b01651c81d82f59", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:twitter_url": "d98043d5b2475c0dab1ffdafc853ebb3", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:votersedge_url": "127792e44e7428d17c62a1fdbe8a6a29", + "build/_data/candidates/oakland/2022-11-08/ignacio-de-la-fuente.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:committee_name": "efb54b688f5bc393bb1f0d6679d45873", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:facebook_url": "8610ed9ef7cd3f8aff8c6302a0b1ca1f", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:filer_id": "fc4e6ceb9d795eafe05ef535c1168781", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:first_name": "5bf185d391901f9ee9831a66ebf59955", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:id": "6ea9ab1baa0efb9e19094440c317e21b", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:instagram_url": "966380509f0de883074e3fb7d956d50a", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:last_name": "bab5013d7acf41b16d50ef0b5d3a7cae", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:map_url": "6541ff4be48e51c29b65388000950d8e", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:name": "a6906b7461b0bbf077d332ab8acc48b7", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:occupation": "93669be28a7b3e956cd410c7ae34cbe2", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:photo_url": "d6f8edfa74f738ea54f55e11e946b704", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:supporting_money": "af079f3d78ae562f91cfdb6773e8dcc2", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:total_contributions": "deef9998c9d6cff1baf06df35d65f40a", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:total_expenditures": "9c2873fb5558603a10b5897d457c99a5", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:total_loans_received": "9ca518dc0b3789adb8ad93efa4978101", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:twitter_url": "c2c0c87b2e74a987824a839f613b611e", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:votersedge_url": "8b09fe3c18fb3cebd689c8298b62ad50", + "build/_data/candidates/oakland/2022-11-08/janani-ramachandran.json:website_url": "0f66d2fb5e1c01091f8a61a775d61610", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:ballot_item": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:committee_name": "d9fbfa03488232aedc5c426b84b0150d", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:facebook_url": "403841e6d6ae9d1dbe58882d332e36d8", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:filer_id": "64782a98d5a060f24143ceda7d023377", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:first_name": "7cc302d3f38d6f940a484412bfb92d8f", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:id": "34173cb38f07f89ddbebc2ac9128303f", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:instagram_url": "cd05265ca1f92a1f0f84bc3c523176aa", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:last_name": "ffafb9ecf7397dead33da75b4cd7dfa5", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:name": "db07e7c2d29a53e61a0d2b14f4bb879b", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:occupation": "46f051e197c74d57d079e9516ef21830", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:office_election": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:photo_url": "dafbbf19cb1bdb16287d9b19e2e5ed08", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:supporting_money": "749cdefa813465cc8aaaac03057bd4c4", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:total_contributions": "5c15c87eb962fea861b6db7d0fe2593f", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:total_expenditures": "2bb40eb12460da3c7eec64d5ae1ed172", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:twitter_url": "9efde7e31a0f29467fbe07f1acf4339c", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:votersedge_url": "1c355909a7f929e3c9891c179be6fa35", + "build/_data/candidates/oakland/2022-11-08/jennifer-brouhard.json:website_url": "e54cfd18cde4b84254074dd7b845537f", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:first_name": "2864a85b13ffda424792de19f5ea793d", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:id": "c16a5320fa475530d9583c34fd356ef5", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:last_name": "f282cabd1c864541052ff209d4dead52", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:name": "d2ac939206db057cd00b751a298ea03a", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/jesse-tapia-juarez.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:ballot_item": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:committee_name": "a3f0437f7a61c46d3ec46411a23a0ad3", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:facebook_url": "b7954d944e504313bbeec573280e66e9", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:filer_id": "cff6cd5f672463a78326bf53b49402f0", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:first_name": "b21b42e75d41cfcf95520aa471d565a8", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:id": "6364d3f0f495b6ab9dcf8d3b5c6e0b01", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:instagram_url": "a25a1af2cc45fef9a1af02cb7ae424ef", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:last_name": "98b39d717106aa158adf29abb04a89af", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:name": "e905d9d51994ea18d4cf7991354d17b0", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:occupation": "15794a6be310edb2bd7afb14e4ec7a8b", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:office_election": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:supporting_money": "e882ed9df0d3f6f2186fdfe19ee37999", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:votersedge_url": "742b86d271eeade9cc6a742ce6cc4bc3", + "build/_data/candidates/oakland/2022-11-08/joel-velasquez.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:committee_name": "1cbcd9c8ec70c147ee6e05bdc539514d", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:filer_id": "95a958b9ea4bdf913ca0b5eb74154b73", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:first_name": "0399ca9f260a25b36f4d656dd6a9ad7a", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:id": "182be0c5cdcd5072bb1864cdee4d3d6e", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:last_name": "45ff7af01434ed17c02d1b9212e9ce34", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:name": "57bd1d74feef4d698ad5126e05e23178", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:supporting_money": "e50ce3b63205c083d73e8b31d4a0d31f", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:total_expenditures": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:votersedge_url": "0f1118e887661d82ad6c166c00fb90ea", + "build/_data/candidates/oakland/2022-11-08/john-mimosa-marks.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:facebook_url": "91b6ddc6b7226f89ce059fdc5d8ac5ea", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:first_name": "0399ca9f260a25b36f4d656dd6a9ad7a", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:id": "e369853df766fa44e1ed0ff613f563bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:last_name": "67a1759509e3832357ca1ce3a288a9b3", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:name": "8e3b4533d69e3214e367e32cdcc85c43", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:occupation": "e0cfbc147fa09b8ad591437b2b7ab7cf", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:photo_url": "5b383e2c7d1b730e18ff47bf35c389eb", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:votersedge_url": "00bccd63e32b877fa2541d379f199f86", + "build/_data/candidates/oakland/2022-11-08/john-reimann.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:committee_name": "2dd894d0b753920ee8383fced45fb45d", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:filer_id": "1bce28a29b9ea7e0c001731f906ddc40", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:first_name": "196b9fe35b8d30eb46e237ef21e2de1a", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:id": "1c383cd30b7c298ab50293adfecb7b18", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:last_name": "940f0ad322d4b1fd6d16aa93bd0be2a4", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:name": "1064fba283996fac96fcd388577b16ba", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:occupation": "15ea0dc831ec0185c89902c05aeb8ec3", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:supporting_money": "bddf9871e2f5bcb2571480fc1db7e1b5", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:total_contributions": "5a7054d6eccfc3d516eeb17f19edbda4", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:total_expenditures": "b4fb39c28e57180f52547e982eac30fc", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:votersedge_url": "58d658d51c971df3b5a8d796cdbc3aea", + "build/_data/candidates/oakland/2022-11-08/kenny-session.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:committee_name": "41ed286b86246d520f1acb19f817fb8e", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:facebook_url": "901821e42a00fc95a99e5fd2bab85f1a", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:filer_id": "04a4161508ea02d80615e3a7eb708da2", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:first_name": "f37a25f5bf0f21f2347f7375591bead5", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:id": "19ca14e7ea6328a42e0eb13d585e4c22", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:last_name": "b7e6d1093ba99ad6a32398235bcebf06", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:map_url": "41dfff7054973cea76996d71d723e5e0", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:name": "b0f55562302a1d0af6602a1e4459685d", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:occupation": "8a970a2367b6fd1d5911e2d6002d8ea8", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:photo_url": "fa1f8c436bae98c1ebb5aa8ba3e0649a", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:supporting_money": "aea30891cae7ac4542372ff8e2fe9202", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:total_contributions": "acadb0f41f888f4ec039968346652548", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:total_expenditures": "3d36c59413c54ebffa83d600af58d9c9", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:twitter_url": "e2a3f8599b48e9a396a3cb245ddd62d7", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:votersedge_url": "c42b9f6d3fd16ec755b5f57d31d62ea9", + "build/_data/candidates/oakland/2022-11-08/kevin-jenkins.json:website_url": "d6336e60a1cff3ff41053bb2ea04be72", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:ballot_item": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:committee_name": "3040c8dcf333e4115f43559c50ce535c", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:facebook_url": "03f185e5bd8bf64e793bddcad36dd590", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:filer_id": "9bfcdfc8b9dc5c26f1e11fd32730dae5", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:first_name": "dbdd59728d648d3cdbefa5f8217aefcd", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:id": "a5bfc9e07964f8dddeb95fc584cd965d", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:last_name": "b1e3776773c6c86dab33adf139420530", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:map_url": "145dc438f6b2eaeee268d0f9900f326e", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:name": "756222d048d376d2f1e78cc70aa9fad3", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:occupation": "02bc73a2f7d45c638e90ffbeea2514cb", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:office_election": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:photo_url": "c00341d8b0a79f20ed81d4f14fd8859d", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:supporting_money": "db3d2eb2bee12d970dd2a565c0ad3ae9", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:total_contributions": "7e3e022935fd6fa0d114f29bd84effe6", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:total_expenditures": "4ce1de209f715e89177a931e3b74765a", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:twitter_url": "6cf905bf50f468a87345b777e11134eb", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:votersedge_url": "10c84c44e8c997fbf15cf03784848afc", + "build/_data/candidates/oakland/2022-11-08/kyra-mungia.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:committee_name": "17fff2408ac573094892f11d56bd0470", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:facebook_url": "dbe36cead5f43c6951cc9109e8387e5a", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:filer_id": "551f2715dc187130b8bc3c842a67f3a0", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:first_name": "b2a1399bae3b8a31cc287d6c54f24c66", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:id": "a5771bce93e200c36f7cd9dfd0e5deaa", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:instagram_url": "08b710918d74160aa874468bde607a3a", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:last_name": "b2d8ecf9a25e37fac40f4548a2959354", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:map_url": "d2268c8989415b5bbf9554a81186fc66", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:name": "6277eaa03fd84380fd31a8a259f84535", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:occupation": "d767ed8d172836f318453e8893175efb", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:photo_url": "555af3a43108176add2b7717957db3a3", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:supporting_money": "8ea90ed21a54f3a69312d9e0523cd45d", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:total_contributions": "3c5e2a8dabeee385971c40951c938ee5", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:total_expenditures": "726446e5c9f597b691eca74c3f3a863d", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:twitter_url": "87dca0f4d46bb7adf0c9bac038f5c2f2", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:votersedge_url": "a20f33fc42189666fb026adcdd961560", + "build/_data/candidates/oakland/2022-11-08/loren-manuel-taylor.json:website_url": "246d1cf9cec1d5d4b9c6c36622150435", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:first_name": "9a5e4b3e4de92b951ad16cea82a26939", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:id": "d67d8ab4f4c10bf22aa353e27879133c", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:last_name": "5d2c89f4e1c7ef00c87c24d62d40f2a0", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:name": "7bfba0a3c9fa8c9f3ed12dcdc8057277", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mart-bradley.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:ballot_item": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:committee_name": "03af3fbbe00d5494e95c15cb88ae56f0", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:filer_id": "4f8eb49044cca883f26743d80ea34e0e", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:first_name": "5dbf4fccfb5a6c2e656160e681094583", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:id": "d645920e395fedad7bbbed0eca3fe2e0", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:instagram_url": "67804da338505138af96aa772bef031c", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:last_name": "1eb485d3ee7e4dd03defe36b0217774e", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:name": "bba18ebd9f0ecefffda18b0dd227ff53", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:occupation": "311d60083696b8c5b5ebd8b563f73645", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:office_election": "1ff1de774005f8da13f42943881c655f", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:photo_url": "3e7442698fe65682132f25e8a2788da1", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:supporting_money": "61c9a0ba47d9cbc3f4fcc8fcb4330286", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:total_contributions": "f5eecd995d4bf005a3738b32c12e246b", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:total_expenditures": "327606f0f42b0c0e1fc49ed13f35b112", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:twitter_url": "3a78545c66a98daf6ba230f0dfb80817", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:votersedge_url": "1cf094911294ffcf49d79e183e2a599d", + "build/_data/candidates/oakland/2022-11-08/max-orozco.json:website_url": "aa2d72517184c5dcdcc02fe7ea46ac17", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:ballot_item": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:committee_name": "6b40a1c462b4ed5fdaf516e9264aa3aa", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:facebook_url": "9cbfe8c7f2b77c80d224ed4ca0e51ced", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:filer_id": "247ad63330942409f0de38c6057dd1f9", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:first_name": "c9c61bdb7387d73d81d7de4356fc24c4", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:id": "3416a75f4cea9109507cacd8e2f2aefc", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:last_name": "5089bb111195d66765b96aadd9ba4442", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:map_url": "7e5aaf462a289b867da9eb5a699cffb0", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:name": "184dc5ee4208f52e695176486b395e17", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:occupation": "fc296b4edf0ca70e01875dfea162bdce", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:office_election": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:photo_url": "821ba714819c8ee27ff7029b4bb9680d", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:supporting_money": "2bc749891cc90df24b74d7178a4ae85c", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:total_contributions": "37f87563f2c5198f8f5f265d612fc96e", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:total_expenditures": "0ccddd59e596fc863d086822dc3e262c", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:twitter_url": "c6767841e0af7f0e97b8724f43f4f0d1", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:votersedge_url": "e4311eb4f5eb0c0462e86fa9c42fb2d0", + "build/_data/candidates/oakland/2022-11-08/mike-hutchinson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:first_name": "df7a9b028503cd3c0da05942b4e65e2c", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:id": "a1d0c6e83f027327d8461063f4ac58a6", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:last_name": "10f841261d6ae0a350e41399c6ccac56", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:name": "9d82f3a4c7337fd81db58fc0bfedee3e", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:twitter_url": "d0e92eb8232e7d70f9f2f4e2d0d6ed95", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:votersedge_url": "0f1118e887661d82ad6c166c00fb90ea", + "build/_data/candidates/oakland/2022-11-08/monesha-carter.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:first_name": "3265bf9ee3078d31e343fe37846955c7", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:id": "17e62166fc8586dfa4d1bc0e1742c08b", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:last_name": "5825289e3c17b90c8a9431cfa73baceb", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:name": "33f6b74cdf3f39b3a61cf14a3ff0d4c4", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:occupation": "c6a2883e30cdf7e7997d907be93e1ead", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:photo_url": "ad682e689bcfc47d3d3262f3cb85b2b8", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:twitter_url": "e5eefeb4e1f434b7552c501a08db1d85", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:votersedge_url": "1fd626bd312f7b7c2564442aa4a9767e", + "build/_data/candidates/oakland/2022-11-08/nancy-sidebotham.json:website_url": "af9904307be2c7ac9d61a42146e13513", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:committee_name": "318ce5bab3e419a9aa93857d338a6e10", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:facebook_url": "5d4e3304f0d8dce837f0ef14e57a0639", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:filer_id": "09fd38ee8b6a65a3f4f38f067c9d2360", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:first_name": "f161bac20d34dcef13af009ff2806ed1", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:id": "f7177163c833dff4b38fc8d2872f1ec6", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:instagram_url": "6aea8d0ec6c258e4d65bf4613a560bcd", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:last_name": "932b3152482fb35b76116da2c4c472ab", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:map_url": "c25002ecc9dfba1f85234c59d76bc911", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:name": "2171dfb99ccef8005834427a0d4f993f", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:occupation": "b7c064e4952759764f6448e5f4576e20", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:photo_url": "ad42593b70dbc909ff8c8ecbd0489330", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:supporting_money": "7a9f075c09b7031442acbb206c2f50b4", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:total_contributions": "ea500ed46adda3942eff323221da6dbc", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:total_expenditures": "924205e0012b870fa44147707dd3bf9c", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:twitter_url": "32254723bb15116b04b46e8d94077642", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:votersedge_url": "3a34930590eed1f7d802eb7d37950235", + "build/_data/candidates/oakland/2022-11-08/nenna-joiner.json:website_url": "6b09cab398791603e8647b4722559613", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:ballot_item": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:committee_name": "f2e7424d84168e632791e93d01550895", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:facebook_url": "50a7d7cb2c8811a0dce7d0f8619e5758", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:filer_id": "c47f2ab99c524a1ecd6313b66dda9ea9", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:first_name": "bdaadf948eab56a9f26be0ed8330cc7e", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:id": "6c8349cc7260ae62e3b1396831a8398f", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:last_name": "494f626ccc46af31aa9ac65990edd8e5", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:map_url": "0a1bf10b838146f388b67f966d1cda4c", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:name": "6cd655760141196a74a48530e4959525", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:occupation": "56379d718d86450c721a36df68c87cbe", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:office_election": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:photo_url": "67aa76925e69faf29919d7b881222363", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:supporting_money": "df3f270533e071be293cab4808b7fff6", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:total_contributions": "f5aae59ae8224b37ec6ebdfde9555186", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:total_expenditures": "54374e0595b4b5fdef9eb3a15ec8ba48", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:twitter_url": "bc28d5b287eeba9943e11d9a2a5bb505", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:votersedge_url": "5178cc6c8297532f7a29e5b79511b755", + "build/_data/candidates/oakland/2022-11-08/nick-resnick.json:website_url": "d36cb09aa1168a25313083b94136b383", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:ballot_item": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:committee_name": "18860df098fdff1cdceaa9b6373e1a01", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:facebook_url": "7131a3d79ea03c0ceeb9023ae4c6bb9c", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:filer_id": "b35bf5143749844d8667af9bbb8194af", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:first_name": "4268ad237d375d155246df59963b279e", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:id": "d9d4f495e875a2e075a1a4a6e1b9770f", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:instagram_url": "cef7b396fa3b435891d719dcdd2768ae", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:last_name": "fda895f8a782cb4db7eddb799b7af386", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:map_url": "85ff80d3ad6155336ae4c5cdf903c7a3", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:name": "664052a6d4e6f6678781b7396fe3ba97", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:occupation": "13ed3d8d2b6e36be8234db3ceb7a14bf", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:photo_url": "0b47be8784910ac3879be9497d4430c6", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:supporting_money": "b6a46665f7e051d1b6de20af83c3da90", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:total_contributions": "ca24413e00f5c7f882514bdfac4650aa", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:total_expenditures": "10eaf72a33fab260648290f0bf852064", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:twitter_url": "cef7b396fa3b435891d719dcdd2768ae", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:votersedge_url": "3b0d1fee760353a920675ac0d5e714aa", + "build/_data/candidates/oakland/2022-11-08/nikki-fortunato-bas.json:website_url": "bc24352896509b33f86235d362b0a02f", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:committee_name": "dad7f08d92bb038740bbae08ead94681", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:facebook_url": "bfe01ada773d7f869e4539deffd05992", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:filer_id": "38edd97c8d29499f62f0a670957e7785", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:first_name": "a77968983a69051ee5cde8fd40462e05", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:id": "642e92efb79421734881b53e1e1b18b6", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:instagram_url": "20337627bf43e96b3c1af751d18386dc", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:last_name": "29279ab0a2cc5aa8c4647e11caaa5bc5", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:map_url": "92928194c2a7256881a76e1992f070c2", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:name": "1214551560564bd95b69ee5c31b7d70e", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:photo_url": "c7dc19c04f50b2a84bcc4b08d430b41f", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:supporting_money": "adeedd2324f97bf2f4c2f96d4791e165", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:total_contributions": "096fa9c7454fdc737506c2f8a91f20ae", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:total_expenditures": "096fa9c7454fdc737506c2f8a91f20ae", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:twitter_url": "213e16e58f437e910397b9bf6cc598f5", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/paulina-gonzalez.json:website_url": "e44684b560849ab7c2476c1a94452aca", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:ballot_item": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:committee_name": "b4e06d771ec50b149af152d223965629", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:facebook_url": "123918731d06143e75bc6241328d9fa1", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:filer_id": "819e70ea042a7b91b4388b06469beb6e", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:first_name": "10f5ea211618c527f8a9b0c8bc355824", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:id": "f457c545a9ded88f18ecee47145a72c0", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:instagram_url": "6f80d66cdfe7f2554157f45d4042597f", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:last_name": "e7f94332e64dae854bccb70fc476254e", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:map_url": "17700626767cb5c7d02ef6d16cf3bd35", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:name": "663d8241894a629d54442cfcfbfe60c4", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:occupation": "d4b6033da81d4e51d92078c2fe0a3b88", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:office_election": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:photo_url": "e609f6acaa60c44d3a10cc217677b26f", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:supporting_money": "2db83de5bdf2fbdecc22d48198484096", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:total_contributions": "c87a1eecacda2ccd992be6d5699450b7", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:total_expenditures": "7ebae3a2fccde1ab8f134590a7dd0950", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:twitter_url": "7c34324bbbe2a72afcdd0a003840200c", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:votersedge_url": "bd3b0459c4621a00e870d0118df79bf8", + "build/_data/candidates/oakland/2022-11-08/pecolia-manigo.json:website_url": "d489a928de566c5ebf628b7e63a56f8f", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:first_name": "c1d4fd6a56b5dee2ed294110790e81ca", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:id": "c0c7c76d30bd3dcaefc96f40275bdc0a", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:last_name": "6855e3865fd01a05064790d43293597c", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:name": "a91bc3a173170294e800afac33a06ed0", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:occupation": "4fe81479144be76e98f941dd9ba6ee6d", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:photo_url": "c1534c54c60330541d5e37118a5882a0", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:votersedge_url": "28b1bb189bc81be48cf7d9384bb17263", + "build/_data/candidates/oakland/2022-11-08/peter-y-liu.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:ballot_item": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:first_name": "1208c7f639f34b1f4f8b526fd737607a", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:id": "2838023a778dfaecdc212708f721b788", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:last_name": "a7e341d2344bbcc4d5dc156cd2c79c8e", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:name": "6ed818708d3c07d296c62d54a10c7423", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/renia-webb.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:committee_name": "ef5bce69ead8e0ec9c43a227946a4319", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:facebook_url": "752ae2dbd441c5d2ca63a58718ef4c83", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:filer_id": "03c92abb388f5cedec6dc9df42a9b8ee", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:first_name": "9776ef948ef12978828ba7a687433819", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:id": "9a1158154dfa42caddbd0694a4e9bdc8", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:last_name": "ddc179d178b4ee9e5b96cfdf8e2d060a", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:map_url": "f7593caf182682d6e0a9b8ddc71de2c1", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:name": "2ed16895cb8bbcde38b0fa2ab96e4118", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:occupation": "b7c064e4952759764f6448e5f4576e20", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:photo_url": "0f4831108dd7d7694b8a5c54e51eb5f9", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:supporting_money": "33412c5747a55d1bfb30bf75ef3dab59", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:total_contributions": "6d542b5d79a222699438eded6c10bf13", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:total_expenditures": "4ea09de920b2ec4b8c82587622b0d133", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:total_loans_received": "fd1fa663e1029a48fa302a7e4ac6b502", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:twitter_url": "15615b5acac14fe544346cec6579d76b", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:votersedge_url": "f215000b3c96f68007b596c3ba93715d", + "build/_data/candidates/oakland/2022-11-08/seneca-scott.json:website_url": "d469a12ba646d7bdc872d75b45a26f95", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:committee_name": "089248d8fc77b25ca5f69eb367185eef", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:facebook_url": "cc20b7d67415dddaf5ac8d8453ddd516", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:filer_id": "abb3a88dad415491da08d6261e254292", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:first_name": "47307c886d12302474b07d4a04b411e6", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:id": "d82c8d1619ad8176d665453cfb2e55f0", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:instagram_url": "8528541a8391831ab9b4ce333933dfc2", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:last_name": "dd069d1371cc3c21212406f54247ae02", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:map_url": "7ab7522f7a2268a06899fb85bbd47c46", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:name": "f0f72b352d19266b3b5c77d4c4e80ba1", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:occupation": "a3fa1aa0a0e1f349f2927a35a7167177", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:opposing_money": "ce1c55d7c2536d39e53ff3299c81acba", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:photo_url": "ce057e13723e80fd361a3a4ab7bae9fe", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:supporting_money": "0f4daaeb19d34a789ca06022d5dbcb1c", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:total_contributions": "cfd649c4f74dc0fb92568c4f5838cdbc", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:total_expenditures": "de07fa8f94c72dcdcee82934f0f379bf", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:total_loans_received": "02541b7cbb840b5f6bd8eff3c9f56f61", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:twitter_url": "8528541a8391831ab9b4ce333933dfc2", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:votersedge_url": "471d2ff21c08d4a1655466aeb1810be9", + "build/_data/candidates/oakland/2022-11-08/sheng-thao.json:website_url": "427698c148fad466993f204b58ee66f7", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:first_name": "1e20a0d94d68915b9d335faf632c1bdc", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:id": "a684eceee76fc522773286a895bc8436", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:last_name": "a2a83d97b2d2d7c574e2da7af9b8bcf2", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:name": "a125bdae99128d41f75b6912f09d4301", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:occupation": "e14750901c87db5d7a513fdf55393c14", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:photo_url": "9f60169b0734c46193bc99b061b0fccf", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:twitter_url": "546e5e9e4dc13434f5dcd40904db99ac", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:votersedge_url": "0f1118e887661d82ad6c166c00fb90ea", + "build/_data/candidates/oakland/2022-11-08/stephen-schear.json:website_url": "c6cc0c7cf3e8e4af0fe8486691fff113", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:committee_name": "6e9fe80481c6c40300d5c5878ec4df00", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:filer_id": "6731985a913d4837a7fd3694b3c4e122", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:first_name": "c750c79f9e7186a72a8f16540e8e5e01", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:id": "b53b3a3d6ab90ce0268229151c9bde11", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:last_name": "0c831c9113dccb86b141cd541cf7cd2a", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:map_url": "0f1bd7e73fbc771a75c7cfb3e0fa4ddd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:name": "2bcbdd09f730d0d7028abf457fe97716", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:occupation": "0d4ce3bf784584ca0cbd20861cf5b0aa", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:photo_url": "4d07b581314e55d08b4e5a509d17929d", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:supporting_money": "3b7a66fff988e6b60c34f216db9e7632", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:total_contributions": "205dc922ac7426c42c2f627eb1c2c315", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:total_expenditures": "45e8a51870e7ac27bb2fd92be9777b74", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:votersedge_url": "a847e1b4bae84c125794f5364c172a7e", + "build/_data/candidates/oakland/2022-11-08/treva-d-reid.json:website_url": "24b42476bc53f7a0b876e8cb84c73ff1", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:ballot_item": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:committee_name": "1b7961a3bac431cd19c632d1400f5bd1", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:filer_id": "a94377594cffe273f8677a0c360a9a85", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:first_name": "be33f3041799426da7c137c7b816148e", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:id": "9f61408e3afb633e50cdf1b20de6f466", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:last_name": "d36088947eb3207b9b16a46c320bb3c5", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:name": "d387d5eedc65577279966e6fe8dd4db3", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:occupation": "ef1339f37f344f30fb210a6d358f6c5a", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:photo_url": "a73e5541a301939ec497d56420aa1b66", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:supporting_money": "e50ce3b63205c083d73e8b31d4a0d31f", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:total_expenditures": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:twitter_url": "4daf9dba2a35b62c71f1b411471bcc06", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:votersedge_url": "22c1c9aef4cc3491d37b240f1153133d", + "build/_data/candidates/oakland/2022-11-08/tyron-c-jordan.json:website_url": "cef4cbb4b977ff6112aa6b9f83e4d8ff", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:ballot_item": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:committee_name": "80a8071e198a767959f66892671a615f", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:facebook_url": "d6472ec5a45c20dcac2a143ddccf3f09", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:filer_id": "31dd46104da6e17b5ea8b3be1fd8a568", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:first_name": "966120400488139db3fe194608268f7c", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:id": "72b32a1f754ba1c09b3695e0cb6cde7f", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:instagram_url": "e7de093f24dd780300cca97eede8ce63", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:is_accepted_expenditure_ceiling": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:last_name": "960df800100c12b4131c9fcaa71cb1fc", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:name": "bc14cabbe2cbf79a83845f7f8cb5677e", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:occupation": "91d44096932cb2ff09e6df52453d2028", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:office_election": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:photo_url": "08c4190027517b5f46163396aa648e6e", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:supporting_money": "f9f0c76cc4f193eaec20ee4c9eaf9ec5", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:total_contributions": "f454dc9551dbf17aaed70a93494d8d36", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:total_expenditures": "f78b48dc4b802a9d02fccdbde698ce66", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:total_loans_received": "62dca49f0781bf26b4305bddb0414bea", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:twitter_url": "e7de093f24dd780300cca97eede8ce63", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:votersedge_url": "b85221c2ecff74ccdaef7568f8014d28", + "build/_data/candidates/oakland/2022-11-08/valarie-bachelor.json:website_url": "8105a80f0b369c06565915071d6c2638", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:ballot_item": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:committee_name": "1e5f9b7c064240b4c79e43afd6c608bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:filer_id": "75dc3d20551988b6dcacf26a2f31f305", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:first_name": "cdedae7549e9e4bc5dd6a6981232424e", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:id": "66f041e16a60928b05a7e228a89c3799", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:is_accepted_expenditure_ceiling": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:last_name": "3b7acd764b64be3e257ca66cc74bc236", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:name": "f63fe9c61d1e9cef31d09c3406ae33f9", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:occupation": "907db744bbc7b34950932b83a39d44d2", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:supporting_money": "6c74eef801cdeebd685d70c4383b400f", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:total_contributions": "d3e0373b77d55002523cb8617bbbaf17", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:total_expenditures": "6f179185c1f0f260bfcd3b95f0b24441", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:total_loans_received": "41fb48d1e68f35d715b5676ad6bd8aeb", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:votersedge_url": "08ca2368b4c1e79544a24526779c4931", + "build/_data/candidates/oakland/2022-11-08/yakpasua-michael-gbagba-zazaboi.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:committee_name": "6729f6f4099220efd0e9c98ad5c58e7e", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:facebook_url": "f3f949ee02e75e47d1ffc7126d87ce3c", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:filer_id": "9547d4b6164198a7c6f8fefd789305e4", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:first_name": "9d8682b01caab6f33985ea2cdab0c834", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:id": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:instagram_url": "899c045d037bbf4c7301914d5aad7105", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:last_name": "bc95e488a500b9a19e50ac25122b155c", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:map_url": "021e142c59ac24312e718bc24a8cab37", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:name": "c306907ce01922dc1d3175e0e22ccc63", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:occupation": "d573f90e8eff1a422cef544ba0763b7a", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:photo_url": "326bcea4563f58edb80363141ee9af2f", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:supporting_money": "51c5091b0473761c6d240fecf941e7a3", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:total_contributions": "9388a4177bf5e97454dc3a1b9dac2cff", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:total_expenditures": "2bd620aa98080d325e264b25c898240b", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json:website_url": "d372a5340944894ab20de5d0b00c8de5", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:first_name": "b65a6040d369afb4d3deba4b63f5502e", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:id": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:last_name": "c73fd98e51f3e15667aa166210fd425c", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:name": "56763fbd8456fcc9dab51ac2a971f522", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:occupation": "4ac476a8364d4fdbb35457774d2ae91d", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:photo_url": "3e2c0da52a665c0104e06a4c9f546116", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/christian-miguel-martinez.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:committee_name": "e9c4de0b90c4cde15030d4d6ce5508fd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:facebook_url": "a5c5f82a2df318814e888f896dea14a5", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:filer_id": "9535aa105d542d02dc6d154855139b75", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:first_name": "f658e2179e44fa86fbe2801b2308a7c8", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:id": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:instagram_url": "94400faadac02ce13a1b40dd3d528bd7", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:last_name": "5f94c83a8f8c8d055aa9d0bcdd18d6de", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:name": "d626e108dcc476a886e13d6ea8e8016f", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:occupation": "9e53191676f8937e8076a69230418274", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:photo_url": "3aebb0b5a2e5ece371e6ff29274a1606", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:supporting_money": "c567b15bee0d8f31be05bc2a5f6a2e6e", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:total_contributions": "e8095c683a3c3fa755f00d3561bb0e91", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:total_expenditures": "e62465e37543edcdf28b4a121d1fde63", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:twitter_url": "1282de084fa43d1fafc646b7dd8794f5", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2023-11-07/jorge-c-lerma.json:website_url": "a4a8fea7b54ec1549afe60e527929561", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:ballot_item": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:first_name": "9d8682b01caab6f33985ea2cdab0c834", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:id": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:last_name": "bc95e488a500b9a19e50ac25122b155c", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:name": "c306907ce01922dc1d3175e0e22ccc63", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:office_election": "70efdf2ec9b086079795c442636b55fb", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/alexandra-ritzie-hernandez.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:committee_name": "3f993c6756118afc0ecdb35aa8a5ec8f", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:filer_id": "037cd2d4a92549ec38d7a32bb3448317", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:first_name": "7a80530aa665588c9a29e4511f2d89f6", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:id": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:last_name": "3b5d1561e5fbe9d7143263402e976453", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:name": "2857324911b8a1c92be89ae255c43f4e", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:opposing_money": "bb1043287ef92200e49439d853cd8aa1", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:supporting_money": "c26bb8bca4dd8f505e71a11203e20828", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/carroll-fife.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:first_name": "862bcb8015e11787d935fa79bdc4644b", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:id": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:last_name": "d980c1e18e1ce9d3282ebca2988c2b0b", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:name": "6f902cf1994341ab60fe3ab2ba904a94", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/donnel-c-dunbar.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:first_name": "203088aaf4c50f9491e03e3a07447333", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:id": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:last_name": "f4999cf9301f8c5bc0b279b2e278f2b3", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:name": "013cdf05c94f9985baf2e08918fc0a01", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:party_affiliation": "5a71b01a52d1cbdd5a03174c8df58852", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/edward-c-frank.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:committee_name": "95e8e77beea039e87086177c6a2654ca", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:filer_id": "c1f53263ab8ad77de05a5a7cd0191ebb", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:first_name": "8d88065c45a3bc6993527551bae8a4e0", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:id": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:last_name": "4c6fbdaa76f8668de3e6bdf88b4c04c9", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:name": "bfe450b9bdc461f4ca1fdbe890596dd0", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/len-raphael.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:first_name": "6bc86e80f150ce8c0107b7a62cf2abd0", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:id": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:last_name": "3f154f03293b518b81204e9f86fbc9fe", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:name": "9f93b7510aceb97f4065a23629ff450d", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/merika-goolsby.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:ballot_item": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:committee_name": "fdd2945bda5aed8538bafc47c9c87b04", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:filer_id": "64d6cb34ef40bbf786b3529aec7b3c26", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:first_name": "1971f425a143957bfdadfc5d092f6e81", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:id": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:last_name": "0643d19d4b0f6a8e0a0848d7c0163ff6", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:name": "70f1432699f9427f6248fa2349a0ba85", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:office_election": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/ryan-richardson.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:committee_name": "bc6b50a73b9c7bc1b464ef7abcd9ee93", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:filer_id": "6dc36844035933eda4b85cf158c81424", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:first_name": "095b0283be394ecb2866d3533f800b83", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:id": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:last_name": "4e8089695017f5126b6564da119684a7", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:name": "040daa2687362a165ae3d85ef67703bc", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/selika-thomas.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:committee_name": "e7919e55b16d873121cbb38d9dc3713e", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:first_name": "0dab9a66677171a836a67772fe388ffa", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:id": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:last_name": "645d5f0203ae3ed964829876a446c38a", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:name": "a0a18b14ae78f7e9dc5873203356a940", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shan-m-hirsch.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:first_name": "486891652cc3848c7aa900e36608011a", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:id": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:last_name": "b9996bb8f885be786b1dd816164e4ab4", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:name": "655da90637147882ca076c52b93d31c5", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:party_affiliation": "7936573151f1f9db4b3204b6eb1c3c6f", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/shantell-herndon.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:ballot_item": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:committee_name": "244782b4ebf2953fab05bb7a38ed5644", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:filer_id": "f80ba65aca23f8f20f55c074f214b555", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:first_name": "c750c79f9e7186a72a8f16540e8e5e01", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:id": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:last_name": "5b5190186e7724ad08df105441b9ca15", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:name": "9917641f619efc3f59a84ea6e376f46c", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:office_election": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:opposing_money": "ef9bc92fa3d60bc89b44634370c73870", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:supporting_money": "d97793e678e08fa63a309f444dfd5e51", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:total_contributions": "dcb3535d0bbc6bf55e50ccc604cce784", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:total_expenditures": "1012dab3ca574b6fafe389a4ec783d7c", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/treva-reid.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:ballot_item": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:committee_name": "71ff65e6708db0908251ccd7cc3598b9", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:filer_id": "304ca2f839c0210ef7ee6618ca2c4329", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:first_name": "be33f3041799426da7c137c7b816148e", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:id": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:last_name": "b6f2e8e165aaa042a571453ca070ca6c", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:name": "82009cdba9143f2af64bf150042dec95", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:office_election": "d3d9446802a44259755d38e6d163e820", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:supporting_money": "e50ce3b63205c083d73e8b31d4a0d31f", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:total_expenditures": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/tyron-jordan.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:ballot_item": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:first_name": "3d3ac5ba4c016d69f161b0f1d0b8ab2f", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:id": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:is_incumbent": "b326b5062b2f0e69046810717534cb09", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:last_name": "d22e7c38e6a6ecd1890f6e1020aec70a", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:name": "6f59d1d79a05f82d3a472a8593b97d1d", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:office_election": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/van-cedric-williams.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:ballot_item": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:committee_name": "0f4e07e410d6a9068c4ef8f791b3f9eb", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:filer_id": "438d5f52970d467660f93b61de070033", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:first_name": "a8ef8e168791a6c97a2b5176a3485dce", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:id": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:last_name": "364b791cb8b5f99392c33202b48e5ca9", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:name": "8568b027242bc6bd452794b4416d4683", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:office_election": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/warren-logan.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:ballot_item": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:bio": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:committee_name": "c933ba3f5f8877a10572b87413130cd8", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:facebook_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:filer_id": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:first_name": "ede4c6e8974372e23c328a164a7eabdb", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:id": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:instagram_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:is_accepted_expenditure_ceiling": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:is_incumbent": "68934a3e9455fa72420237eb05902327", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:is_winner": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:last_name": "47da964dcc8c4b3ca7784748d000aa25", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:map_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:name": "e0b330bbb932632be1207ce31dd41c66", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:office_election": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:total_expenditures": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:total_loans_received": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:twitter_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:votersedge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/candidates/oakland/2024-11-05/zac-unger.json:website_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/committees/.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1229791.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1229791.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1236617.json:contributions": "df4b4cf198164d4282627bde9b27a076", + "build/_data/committees/1236617.json:total_contributions": "39b0c656db457183725e2b781839aea5", + "build/_data/committees/1250247.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1250247.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1253609.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1253609.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1256357.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1256357.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1273532.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1273532.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1277578.json:contributions": "58ec720a03062906f6b37723dcacd4c4", + "build/_data/committees/1277578.json:total_contributions": "9ca518dc0b3789adb8ad93efa4978101", + "build/_data/committees/1284523.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1284523.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1294190.json:contributions": "bb93be458260c008a97647c82f169dab", + "build/_data/committees/1294190.json:total_contributions": "2d2024bdf410832819269eb011b5633c", + "build/_data/committees/1295554.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1295554.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1296947.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1296947.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1302433.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1302433.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1303019.json:contributions": "439227098cdf057aa3d853d5518b2577", + "build/_data/committees/1303019.json:total_contributions": "0e5cd40e575d1a7b5f7ecd993e14c831", + "build/_data/committees/1303541.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1303541.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1304073.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1304073.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1307016.json:contributions": "e197a8fe0fa455b53fad5089e4aa3c6e", + "build/_data/committees/1307016.json:total_contributions": "502f38b5e984a4bb400d1c11c7f3b06d", + "build/_data/committees/1310647.json:contributions": "7e8ae4f3cdd4561c8e2046bcd76d129c", + "build/_data/committees/1310647.json:total_contributions": "a6e5953f321d4e3fbcce2d2d281064d1", + "build/_data/committees/1324270.json:contributions": "59fe7524959f7e15f8535aa65f5131aa", + "build/_data/committees/1324270.json:total_contributions": "bde09591c7506e5514be526551ac3ad6", + "build/_data/committees/1326919.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1326919.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1331137.json:contributions": "d33923e03c6a6d81d64f98ab9b0c3b91", + "build/_data/committees/1331137.json:total_contributions": "a2d8a63a0d5721e34cc611f378bf045c", + "build/_data/committees/1332115.json:contributions": "57369ab1dab4300bbd90806eb7bcc4c7", + "build/_data/committees/1332115.json:total_contributions": "5caa85046805ce6bef2baa22ff1ffa57", + "build/_data/committees/1332307.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1332307.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1335572.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1335572.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1339522.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1339522.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1341827.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1341827.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1342185.json:contributions": "fc8ba95de65ef30044f77896fc7d6493", + "build/_data/committees/1342185.json:total_contributions": "13e3f1d73e61c2c32d374ef3bf8f8d9c", + "build/_data/committees/1342416.json:contributions": "4834adcc8bbd80461d227bc3d1e75571", + "build/_data/committees/1342416.json:total_contributions": "8f39124bf881158ff6d869aa58e1f2cc", + "build/_data/committees/1342695.json:contributions": "5bc3e2e9814cf7afa7ce4f699fadb9e8", + "build/_data/committees/1342695.json:total_contributions": "3a9d24f3f4eba25b46c43dd869c977ca", + "build/_data/committees/1344093.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1344093.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1344506.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1344506.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1345259.json:contributions": "02032eede82809e3d06feeca94674140", + "build/_data/committees/1345259.json:total_contributions": "6d6984b8559f62737eb5d843aec9fba8", + "build/_data/committees/1345905.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1345905.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1345919.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1345919.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1347517.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1347517.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1348353.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1348353.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1348676.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1348676.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/134896.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/134896.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1351785.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1351785.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1352921.json:contributions": "b1ef5032a1ea7e07934efc9e855077e3", + "build/_data/committees/1352921.json:total_contributions": "1434f81012ce9c2aba692d5177889ef4", + "build/_data/committees/1354678.json:contributions": "d33222050d0c65236b46e11c6235ed1c", + "build/_data/committees/1354678.json:total_contributions": "2ddc0f1b69152492931fb48cde83e7a2", + "build/_data/committees/1357609.json:contributions": "38af37df01bb1f2bda1e5946040216da", + "build/_data/committees/1357609.json:total_contributions": "53ea7c87a41671fc2533dc9551f8b346", + "build/_data/committees/1359017.json:contributions": "98080e8bd05df5947111a50d041434aa", + "build/_data/committees/1359017.json:total_contributions": "e6787b128709b7f7eac0edae70518eed", + "build/_data/committees/1360826.json:contributions": "391387d026a7e447524a43e0efe21f6e", + "build/_data/committees/1360826.json:total_contributions": "1cf901a652174e45c867f88f1f189a16", + "build/_data/committees/1361954.json:contributions": "eb3b4f6a1f4de34a38134a31db3044ba", + "build/_data/committees/1361954.json:total_contributions": "f5c36a6a96d4a299c58b09a916b82c5f", + "build/_data/committees/1362261.json:contributions": "cbb7db6501a73e077ce6c62cfd4d9b72", + "build/_data/committees/1362261.json:total_contributions": "5f3a844be2ffdf33d6067a3d2cdb052f", + "build/_data/committees/1362843.json:contributions": "a2944649324ab058b99a244bb96062fe", + "build/_data/committees/1362843.json:total_contributions": "4b6754581a1f361caa53de0112564f1b", + "build/_data/committees/1362877.json:contributions": "2c39504af11db31a9faee1bc69caef34", + "build/_data/committees/1362877.json:total_contributions": "6946b61525edf2606aa8204367bfdf17", + "build/_data/committees/1363584.json:contributions": "9071b59dc3190aef3f85121c433e0d83", + "build/_data/committees/1363584.json:total_contributions": "f34e5e754e1562243b15dd0fe2d07110", + "build/_data/committees/1364029.json:contributions": "e96a5ef80313f6e0d4cc925f056044a2", + "build/_data/committees/1364029.json:total_contributions": "ccefcf12b607aef02d8e2d70c14cdbae", + "build/_data/committees/1364278.json:contributions": "6379834ef4713377b69ae2c28dcf351c", + "build/_data/committees/1364278.json:total_contributions": "452606de7bcf23d5c2b7e3b8b222441d", + "build/_data/committees/1364308.json:contributions": "bde1fb009a03eac7bbd29e45de327ccb", + "build/_data/committees/1364308.json:total_contributions": "9cc6f57dfce62cb9e4032ef5e1e41895", + "build/_data/committees/1364457.json:contributions": "49071a65e36cfed225d6c1fca2945e92", + "build/_data/committees/1364457.json:total_contributions": "11cc258ed7fdc0a3ce1e515111f0747f", + "build/_data/committees/1364564.json:contributions": "397f60321c71c5ce3c4bf256af814249", + "build/_data/committees/1364564.json:total_contributions": "d93b5cb48cac8241564b3c3d09e8d9f2", + "build/_data/committees/1365384.json:contributions": "63ffa8c60747ba03ca83a0ec2a0d007b", + "build/_data/committees/1365384.json:total_contributions": "7298116a5bcb41bcb5e3570785be116f", + "build/_data/committees/1365454.json:contributions": "8ca250585ba4823ebb451aa8221213b4", + "build/_data/committees/1365454.json:total_contributions": "368c4568c66fec0bfa15aa48c1443236", + "build/_data/committees/1365610.json:contributions": "c1b29188661857ce30f9e6e3f61adfea", + "build/_data/committees/1365610.json:total_contributions": "75d90a911ad7e9ebf16d03b21cee88c9", + "build/_data/committees/1365733.json:contributions": "a1326866d65cab091702cb9f328ef9ba", + "build/_data/committees/1365733.json:total_contributions": "16002e775516e712aca95609cdefe9ed", + "build/_data/committees/1365766.json:contributions": "e89df190b081c16073055e2a01223ce8", + "build/_data/committees/1365766.json:total_contributions": "ce0d2736e0502a591fd9f5fdf1fda185", + "build/_data/committees/1366244.json:contributions": "960d805139803e5dd99c61c6a0aefca7", + "build/_data/committees/1366244.json:total_contributions": "699e5d1014176617f4c4a202d0e2d575", + "build/_data/committees/1366759.json:contributions": "5308e606fa621a0867900498fe15ebf2", + "build/_data/committees/1366759.json:total_contributions": "f2608c87eb94a1dbc5064c033963c508", + "build/_data/committees/1366842.json:contributions": "c2207f63df2613dfab565b0927a51f5a", + "build/_data/committees/1366842.json:total_contributions": "b44e5854d3c83f410cdbc3bbd144a460", + "build/_data/committees/1367083.json:contributions": "73021fb185af7098c250eb3f3eaf7cc2", + "build/_data/committees/1367083.json:total_contributions": "e226475b81520a8b075739ac3e1eaa6d", + "build/_data/committees/1367207.json:contributions": "a43ebaa2ff7b5919123d6c61ea273f64", + "build/_data/committees/1367207.json:total_contributions": "c9bba0755dcd2d2b04987b29189a1e16", + "build/_data/committees/1367270.json:contributions": "42f08d5f73b0d6560a0171fc76f82444", + "build/_data/committees/1367270.json:total_contributions": "5eb0ab1638d4a22445fcf4ec54235477", + "build/_data/committees/1367463.json:contributions": "d29e25ef49ee0e7d0528ba0c694e68bd", + "build/_data/committees/1367463.json:total_contributions": "a6f0bc3df270e79963ef10d5badfd87e", + "build/_data/committees/136810.json:contributions": "3d0a74dfc1bf11d53d7722f72731768f", + "build/_data/committees/136810.json:total_contributions": "84bc0bbc7cd01db53ea7127b1742ca94", + "build/_data/committees/1368410.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1368410.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1368416.json:contributions": "8284a3a46394a034067d6e041ad88a04", + "build/_data/committees/1368416.json:total_contributions": "c80753b25c42f4db7f7e3f6cf0e78eee", + "build/_data/committees/1368984.json:contributions": "87e24bbef3ed022965264dad8dbae6a0", + "build/_data/committees/1368984.json:total_contributions": "21ee0c26388e83f443c4c735951e8fce", + "build/_data/committees/1369263.json:contributions": "b8171ca58a3393e0135a878b8951081a", + "build/_data/committees/1369263.json:total_contributions": "3bc116c2380281a72460e0c704df0e76", + "build/_data/committees/1369363.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1369363.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1369536.json:contributions": "1ed96f15e5bf982f54aeda50dbfd9436", + "build/_data/committees/1369536.json:total_contributions": "751d535c33b53ce0f7799cc00ee6b62a", + "build/_data/committees/1370519.json:contributions": "ca191f1d7c628d4abdf2e42ae62c8896", + "build/_data/committees/1370519.json:total_contributions": "d811c7fe8c92e36aaf12db8ed6ffa865", + "build/_data/committees/1372459.json:contributions": "0f1a2e165f45b1bb8607c6f0b5b3b59b", + "build/_data/committees/1372459.json:total_contributions": "bd53559a7214cb0668f566620c493655", + "build/_data/committees/1374343.json:contributions": "d378d2b7aa0c0e26b8233223d3d8973f", + "build/_data/committees/1374343.json:total_contributions": "8b60cdc98b8beb7efdcd748b7217ac44", + "build/_data/committees/1375179.json:contributions": "05af7ee40a77349289d7d00b68d202f3", + "build/_data/committees/1375179.json:total_contributions": "78fd8a56080fba041e14cb5692d5c390", + "build/_data/committees/1376660.json:contributions": "d8045bfcd41b54d103659d87846d540d", + "build/_data/committees/1376660.json:total_contributions": "16a0af86b127d3c886dd8c0bb1f8a3c0", + "build/_data/committees/1379121.json:contributions": "6e6c00af1b81e80350dae6150740f167", + "build/_data/committees/1379121.json:total_contributions": "6d30525b6c1b82c0fdc43bd5b413cad2", + "build/_data/committees/1379188.json:contributions": "6b1a36afeaf671544ea2dc2bfbbd65e6", + "build/_data/committees/1379188.json:total_contributions": "d42bfd666cc26906d87f390a6ddaf874", + "build/_data/committees/1379618.json:contributions": "7916b7f2162936b5c7af29626411aab1", + "build/_data/committees/1379618.json:total_contributions": "c0349644d6579a41928e9d44d7ce8d7f", + "build/_data/committees/1380387.json:contributions": "6292d042a53bb762aa04797b2a61ea27", + "build/_data/committees/1380387.json:total_contributions": "0bf004feca2671d8a944dab66de8b938", + "build/_data/committees/1380610.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1380610.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1381041.json:contributions": "2fa647b00fa7fc359097e06b0e82d79e", + "build/_data/committees/1381041.json:total_contributions": "87a5daf7f9584be229602960c1b28ea8", + "build/_data/committees/1381183.json:contributions": "3fd38f3ffd2a784afa7a128b3597b491", + "build/_data/committees/1381183.json:total_contributions": "e68aca24a07d029c516f39fb75dc74db", + "build/_data/committees/1381519.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1381519.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1382194.json:contributions": "987c91a2110cc61013f63e14b5a6bc4c", + "build/_data/committees/1382194.json:total_contributions": "217746e2bb6e0c01bdf9b8c10aa32655", + "build/_data/committees/1382223.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1382223.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1382408.json:contributions": "91eaed11a9c618e594118e24df0e9d88", + "build/_data/committees/1382408.json:total_contributions": "f80e65b28bfd596b3f3082c2a0c59c70", + "build/_data/committees/1382679.json:contributions": "72ade007a5176acdeb4b37818569bda3", + "build/_data/committees/1382679.json:total_contributions": "0ccad7212a88d004494ac6bbadaaabe5", + "build/_data/committees/1382995.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1382995.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1384267.json:contributions": "80358db73cbe2ba0017df99b37b8d077", + "build/_data/committees/1384267.json:total_contributions": "b7735de562cfb90fccf319fa6563289f", + "build/_data/committees/1384926.json:contributions": "939e99d88d716f9ffe4c8e917c398896", + "build/_data/committees/1384926.json:total_contributions": "e6ec001ea0c8d857fee39434572510de", + "build/_data/committees/1385180.json:contributions": "4d8dadc7af6f3052a82ede1dfdc1b925", + "build/_data/committees/1385180.json:total_contributions": "b66372f833255262daec8b7ab581f96d", + "build/_data/committees/1385949.json:contributions": "c4cb694a0b1f69608fe6e87e1afe8669", + "build/_data/committees/1385949.json:total_contributions": "679f9d58bec9873448356ff2fd16204e", + "build/_data/committees/1386081.json:contributions": "ab8742348c1e52d7b216279a42c2815d", + "build/_data/committees/1386081.json:total_contributions": "87bd3096ba3da0e93a6a6e5ae5e434d4", + "build/_data/committees/1386145.json:contributions": "eb7b0183055a5200532c6b0a5ebb76bc", + "build/_data/committees/1386145.json:total_contributions": "0211bb3848c6abca3df733b985b3fd74", + "build/_data/committees/1386416.json:contributions": "0139b37a853d7fa5ab047c4b6f317bb8", + "build/_data/committees/1386416.json:total_contributions": "3cd7f92bba0ad12e1918542afbf78a50", + "build/_data/committees/1386655.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1386655.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1386741.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1386741.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1386749.json:contributions": "5569277370c3fb8f6017d1db6ad53150", + "build/_data/committees/1386749.json:total_contributions": "495fcff99fc76c469b9709e75c739244", + "build/_data/committees/1386922.json:contributions": "9e4589e52ded03b2d395b48f485bd403", + "build/_data/committees/1386922.json:total_contributions": "977e30d952c14ef95ba7ad9c2f288b2e", + "build/_data/committees/1386929.json:contributions": "5481f1377bf69618b908e31282a00455", + "build/_data/committees/1386929.json:total_contributions": "e3c96415dbbbd46633af2ef82ba8d9ae", + "build/_data/committees/1386932.json:contributions": "acc61f53440fab617091f27c956483c6", + "build/_data/committees/1386932.json:total_contributions": "9dfbe679b333012d5fd06c8fd3d801cd", + "build/_data/committees/1387128.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1387128.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1387192.json:contributions": "18c1555b504b7b515406d84058998c57", + "build/_data/committees/1387192.json:total_contributions": "9800c0fa52754de74c43bd65e7b57a15", + "build/_data/committees/1387267.json:contributions": "ab8b4bb4934350cac4427e4a5bf9722c", + "build/_data/committees/1387267.json:total_contributions": "59dacb4260311497abdc3fb32170f170", + "build/_data/committees/1387393.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1387393.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1387803.json:contributions": "c53f78554da1fac5e40ee03df5ec997d", + "build/_data/committees/1387803.json:total_contributions": "150b9d4563c187e934ab43398a53ff77", + "build/_data/committees/1387861.json:contributions": "8c9cde4eb3391dbc94a7a808d025f9af", + "build/_data/committees/1387861.json:total_contributions": "51fd345a4920ad332f9ed8c64eb0f241", + "build/_data/committees/1387905.json:contributions": "de1b853e349dac67eb69be555fde49ee", + "build/_data/committees/1387905.json:total_contributions": "86dea51221214cbf95b9f95eb6cc7a92", + "build/_data/committees/1387983.json:contributions": "a648f79e70339ee2efd38eab00d081ae", + "build/_data/committees/1387983.json:total_contributions": "def1c17680aca626f4fc7e8a1c50d72c", + "build/_data/committees/1388133.json:contributions": "f8155e392a0752fdfb3c0064de33fba3", + "build/_data/committees/1388133.json:total_contributions": "fcb8a64ce5eeaa7ebde8de29ceda0b74", + "build/_data/committees/1388168.json:contributions": "f29847095ece3edba41b685240c30399", + "build/_data/committees/1388168.json:total_contributions": "d8822c49aae502447ad813277ed45acd", + "build/_data/committees/1388641.json:contributions": "87912d9c4ab097ddc0f6b310f6c92a0f", + "build/_data/committees/1388641.json:total_contributions": "d192c1c7ece29a49a6aafe373ff0e971", + "build/_data/committees/1388731.json:contributions": "85535b8cdb2b38cdea4b989b5eb7628e", + "build/_data/committees/1388731.json:total_contributions": "6c52ed611aec8ae77f45d6afd0af9718", + "build/_data/committees/1389717.json:contributions": "e19f63bb377471950982f2a4e6f22a29", + "build/_data/committees/1389717.json:total_contributions": "3ce2d44ac34b0ad717cf139b4c65b098", + "build/_data/committees/1390351.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1390351.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1390722.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1390722.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1391606.json:contributions": "898993f2daba609a189bb44dbbb330fd", + "build/_data/committees/1391606.json:total_contributions": "619968d2a9ce71ae85fc78ecbd00a0bf", + "build/_data/committees/1391632.json:contributions": "8c9d58a096c9bead3017a4c6dcb83559", + "build/_data/committees/1391632.json:total_contributions": "ff771bb15ba3d9b95fdcdfa3126a0f75", + "build/_data/committees/1392132.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1392132.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1392842.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1392842.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1395306.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1395306.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1395580.json:contributions": "f82e325633d55a07fad53ba489f3c673", + "build/_data/committees/1395580.json:total_contributions": "9d4d12549af695eabc106cdca0db26e2", + "build/_data/committees/1395947.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1395947.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1395968.json:contributions": "f3fb4483fdd12b4313173207f77671c0", + "build/_data/committees/1395968.json:total_contributions": "3e0f9c1bf77477761723a8ab46b18cf0", + "build/_data/committees/1396338.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1396338.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1397586.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1397586.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1398097.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1398097.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1398329.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1398329.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1398847.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1398847.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1400325.json:contributions": "08ca220364e1d5a0d47a22f33196cdbb", + "build/_data/committees/1400325.json:total_contributions": "2205f8c4fea5157f2ebc7b572113a229", + "build/_data/committees/1400467.json:contributions": "f9cfec9b360eb197f1dc39d651fcedb9", + "build/_data/committees/1400467.json:total_contributions": "508a51aca7c8fc09ec1d5a1cfdfff756", + "build/_data/committees/1400769.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1400769.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1400773.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1400773.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1400832.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1400832.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1400908.json:contributions": "1ad32f6cbc38311c5ca9cebf88fa821d", + "build/_data/committees/1400908.json:total_contributions": "059377bb33815228a2967e74d8974c38", + "build/_data/committees/1401499.json:contributions": "481ceec04def987d52ffb4cc914f2374", + "build/_data/committees/1401499.json:total_contributions": "ad542e52ae5a66fa12b7307e67f8e38a", + "build/_data/committees/1401516.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1401516.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1401571.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1401571.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1401632.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1401632.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1401694.json:contributions": "5bfb6e6a6fb1577adfefe0afaacab8b3", + "build/_data/committees/1401694.json:total_contributions": "5a5089e7386e330ff662c71990fb0ea3", + "build/_data/committees/1401958.json:contributions": "b7cc8df80cd1b604e7795206b9a7bac0", + "build/_data/committees/1401958.json:total_contributions": "55bf2959b4bc0c5c4b33fea8411f4128", + "build/_data/committees/1402139.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1402139.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1402425.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1402425.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1402995.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1402995.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1403124.json:contributions": "34f6e867130121f7056d4de0d3d50955", + "build/_data/committees/1403124.json:total_contributions": "a03243c1db786293423264099f0051c4", + "build/_data/committees/1403165.json:contributions": "2285b17bdc146ae213b055fddb3d3352", + "build/_data/committees/1403165.json:total_contributions": "876dcba81e7d783949942b222c75f92e", + "build/_data/committees/1403436.json:contributions": "712735e4fe130f3853f22e5ab7a27351", + "build/_data/committees/1403436.json:total_contributions": "f2d6d1576ac2b898ef4d6e7c732e9dcf", + "build/_data/committees/1403502.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1403502.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1403762.json:contributions": "52e319bbfa87186b8ed90791e38138ce", + "build/_data/committees/1403762.json:total_contributions": "c340bd04257937d9fc8f3a2304a28d3e", + "build/_data/committees/1404060.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1404060.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1404085.json:contributions": "a0667da48d6cf9d6dec44740623c00f5", + "build/_data/committees/1404085.json:total_contributions": "d39e4ede42b5b7ee4eaf3cf38b9562a3", + "build/_data/committees/1404347.json:contributions": "b2ac555eea632d12b8079133d23bfa3f", + "build/_data/committees/1404347.json:total_contributions": "26a2d25010039b72a788987319e24106", + "build/_data/committees/1404405.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1404405.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1404416.json:contributions": "708972f78e8356a0f94b70ff93b6c5a1", + "build/_data/committees/1404416.json:total_contributions": "fba3ac9f73f442e81237c1f7c1851069", + "build/_data/committees/1404992.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1404992.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1405137.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1405137.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1405187.json:contributions": "8256f8e715d3379126bda4cd07cb8e4e", + "build/_data/committees/1405187.json:total_contributions": "fd3188003ca4d797735e1a7334e53af1", + "build/_data/committees/1405266.json:contributions": "eaf6dbc771f966a22a3f71b7cc54e8c5", + "build/_data/committees/1405266.json:total_contributions": "76df424da051b1ba51c80e2d10c31e25", + "build/_data/committees/1405422.json:contributions": "3a693a526f4b7f146bcaf1d037f0e630", + "build/_data/committees/1405422.json:total_contributions": "ef40ef16fcb6cfd29152aedcb51143c3", + "build/_data/committees/1405456.json:contributions": "772474988adf16f33e689100707f141f", + "build/_data/committees/1405456.json:total_contributions": "8dbe9d6f6d828b33a722980c76905617", + "build/_data/committees/1405474.json:contributions": "a9d7ee2aa95d833484f59c731063f420", + "build/_data/committees/1405474.json:total_contributions": "a855a02114e9d47a773bfa7d6b625374", + "build/_data/committees/1405491.json:contributions": "5693187d5e7c847063047584f0d91902", + "build/_data/committees/1405491.json:total_contributions": "658e756e79ea3622c5f2fbbe3c482f16", + "build/_data/committees/1405565.json:contributions": "5627b1b9788e049bc57288d1dbe06f82", + "build/_data/committees/1405565.json:total_contributions": "3d8a85685100ef9a3ef414d9cfbd62f7", + "build/_data/committees/1406153.json:contributions": "dafa777ec193a0d85bbab5068043da16", + "build/_data/committees/1406153.json:total_contributions": "d044c45846ddf469ade66c285731876f", + "build/_data/committees/1406223.json:contributions": "cd74094b683321ec0858399f1ef93fc1", + "build/_data/committees/1406223.json:total_contributions": "3d53cd802d7d6b45e5f0229011a1264e", + "build/_data/committees/1406241.json:contributions": "55828ba2dd5113c60931f37c5868ff4e", + "build/_data/committees/1406241.json:total_contributions": "6664ad23f47d392d270fb92adbd7784d", + "build/_data/committees/1406398.json:contributions": "27324be2c3520dee96bf432359f7cb00", + "build/_data/committees/1406398.json:total_contributions": "7516acb25f6a41bef9ea3381d00eeaed", + "build/_data/committees/1406450.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1406450.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1407729.json:contributions": "89c75effddf424224937a5bad0383cac", + "build/_data/committees/1407729.json:total_contributions": "863167dbc792fb7c229eef21205286fb", + "build/_data/committees/1408016.json:contributions": "9b995e2c6fcac0e6bfb1816db0b7acfa", + "build/_data/committees/1408016.json:total_contributions": "6eccb3950c632085bf220594b995f822", + "build/_data/committees/1408075.json:contributions": "ef54d35251306c387211f9e1a3eeed68", + "build/_data/committees/1408075.json:total_contributions": "6d9bc03c0c75f32f3325c199c571da58", + "build/_data/committees/1408367.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1408367.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1408555.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1408555.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1409088.json:contributions": "04fa760f467eab83575a53535c689a27", + "build/_data/committees/1409088.json:total_contributions": "6b8655fa1bb95c14077b100f0af407c2", + "build/_data/committees/1410279.json:contributions": "d2f7194fc9b57786923628df9bc6b6c9", + "build/_data/committees/1410279.json:total_contributions": "0a33aaeb0546bdd6b98265329241529a", + "build/_data/committees/1410941.json:contributions": "f085910ac0a4df3a1dad407366af4d92", + "build/_data/committees/1410941.json:total_contributions": "2bf438364946c4386ea48304d9c77713", + "build/_data/committees/1410943.json:contributions": "50e8af72eadc9316c2eea6d2b16d43dd", + "build/_data/committees/1410943.json:total_contributions": "69070fb819562edb8d5477da8bf5716d", + "build/_data/committees/1412582.json:contributions": "772837b0cc5f54b0919bc99fcf04361e", + "build/_data/committees/1412582.json:total_contributions": "8b1f880a37d908c0a3153009b0122786", + "build/_data/committees/1412686.json:contributions": "4aaea0fdd397d561da8237f3282283b2", + "build/_data/committees/1412686.json:total_contributions": "00c7312eb8ed9b9d8f611d44ea47dc0c", + "build/_data/committees/1413388.json:contributions": "bea80f4ad85870462d45615634f41ce9", + "build/_data/committees/1413388.json:total_contributions": "b38d66e842686acd2c00649a798472c6", + "build/_data/committees/1413440.json:contributions": "8b7975c8391ed8eb365bd320582665b6", + "build/_data/committees/1413440.json:total_contributions": "b8f0f94ced5f50e343a1bda59d3dcfc0", + "build/_data/committees/1413550.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1413550.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1417455.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1417455.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1417608.json:contributions": "f567352f34c160df2e2480528cb40cf6", + "build/_data/committees/1417608.json:total_contributions": "24a2f702b183e6920c986e85c79da765", + "build/_data/committees/1418926.json:contributions": "98d3198656a08d01f44fefaa48dcff96", + "build/_data/committees/1418926.json:total_contributions": "e0e068d0e6406c25116baeb4252fc613", + "build/_data/committees/1419466.json:contributions": "c13e72f66f9835e32ed26da594d5e13f", + "build/_data/committees/1419466.json:total_contributions": "b8a0296211c7b5b3396b90c53bca0a3e", + "build/_data/committees/1419748.json:contributions": "d93ed55fa342e0d52b9f7accd8053938", + "build/_data/committees/1419748.json:total_contributions": "eb29497c65e045ea8563cfbe9d57f7b6", + "build/_data/committees/1419930.json:contributions": "47975c54949859d5634c568031f27ef7", + "build/_data/committees/1419930.json:total_contributions": "e60630a67dfe4472bc29a8c2e2edecab", + "build/_data/committees/1420085.json:contributions": "bfd4a547932a354f4d9b56ea5c775099", + "build/_data/committees/1420085.json:total_contributions": "be18a840273f6691596ae28f1bc830f0", + "build/_data/committees/1421001.json:contributions": "34e1b60532c8399c1995a6391dac0b0f", + "build/_data/committees/1421001.json:total_contributions": "746b0ed3eaa27a7113eb5be2532a47cb", + "build/_data/committees/1421347.json:contributions": "96b45d455ce0a82bb8f4d9960911665a", + "build/_data/committees/1421347.json:total_contributions": "a5fd4eaaae14044bb82a2ea099efd6d4", + "build/_data/committees/1421466.json:contributions": "5e0c86c910367884bdb02c67765fc5c8", + "build/_data/committees/1421466.json:total_contributions": "ef27a90134ba7440532c7b0642e960ca", + "build/_data/committees/1422177.json:contributions": "4c5779389f4413a4825b70841786ec44", + "build/_data/committees/1422177.json:total_contributions": "6a76fb78ad543c6d6a31c7baebe9a7a8", + "build/_data/committees/1422389.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1422389.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1423153.json:contributions": "53af38514eaa2b966130e1b681cbec95", + "build/_data/committees/1423153.json:total_contributions": "7d20dae5501e42fdfc737f0a9ded2630", + "build/_data/committees/1423541.json:contributions": "0e7a1bec93b0a07a51758208f5892193", + "build/_data/committees/1423541.json:total_contributions": "60ceb63a53e1639f247cb64f8f8a3721", + "build/_data/committees/1423821.json:contributions": "f9d00dffb9ef42987ef28458eef1b033", + "build/_data/committees/1423821.json:total_contributions": "8a1ad8644ae2fdb2c56214830c136361", + "build/_data/committees/1424633.json:contributions": "923fcf545e8040b67d4631ff0a988a0b", + "build/_data/committees/1424633.json:total_contributions": "7436887d2e8c97b4620b1644acc25067", + "build/_data/committees/1425082.json:contributions": "ed0aa083dff27a6683e3d7be7cb5de7f", + "build/_data/committees/1425082.json:total_contributions": "8f34262734c1857991f496519e8eca01", + "build/_data/committees/1425090.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1425090.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1425443.json:contributions": "04cb53e1d2917671fe6a2f9d996c775e", + "build/_data/committees/1425443.json:total_contributions": "b32da4b509f6ef5a0e4afd0b44688f47", + "build/_data/committees/1426138.json:contributions": "142b9feaee735fe7771165c794ca893c", + "build/_data/committees/1426138.json:total_contributions": "f3ddaef9c14fd5900e36abb8c8d9e2cd", + "build/_data/committees/1426259.json:contributions": "2340867ce227ada7c0940d31519b025d", + "build/_data/committees/1426259.json:total_contributions": "8c1eb5d7f319b2ced97fca6abd36c947", + "build/_data/committees/1426780.json:contributions": "096203b00c6a53c2a53a0e44f0af5753", + "build/_data/committees/1426780.json:total_contributions": "47938d64042f9e72f7ce0019faa0e872", + "build/_data/committees/1426942.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1426942.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1426949.json:contributions": "f242e63e95351725cb7a13f17bc9f58b", + "build/_data/committees/1426949.json:total_contributions": "f7e7752bce3d0e1dc33bcb8a5cdb6467", + "build/_data/committees/1427022.json:contributions": "2148ac2a2d797a2af904145a18d71352", + "build/_data/committees/1427022.json:total_contributions": "a772addb4ba8b2fc696dde88da5ee733", + "build/_data/committees/1427317.json:contributions": "949f754a08ef86fbfebe9ac88bf7d048", + "build/_data/committees/1427317.json:total_contributions": "3642677ce56ff7d819143e39a37872de", + "build/_data/committees/1427385.json:contributions": "750a794375f3861d658f27bfa91ebef7", + "build/_data/committees/1427385.json:total_contributions": "ebcb7cde6ad26b50da843d0b9e0e6e03", + "build/_data/committees/1427469.json:contributions": "0b7459cd8a6b090d5e6ba6ef2b4742b2", + "build/_data/committees/1427469.json:total_contributions": "16d3a82468e950944b3fed2de46056fa", + "build/_data/committees/1427563.json:contributions": "5a356d465722f4c829bf59b6f81b9276", + "build/_data/committees/1427563.json:total_contributions": "10a18980bb21896811d669b5604d8f72", + "build/_data/committees/1427585.json:contributions": "97f34e1ffcac0d5278d652a7d24af069", + "build/_data/committees/1427585.json:total_contributions": "48b6a6281ea21b2beadbda453ad2937d", + "build/_data/committees/1427679.json:contributions": "ae02c6d14f70ba424bc7731458846a5c", + "build/_data/committees/1427679.json:total_contributions": "f10b7c2a883280063bb08ba123ac7cb7", + "build/_data/committees/1427826.json:contributions": "dd814a3ccab9ffcc558f5f5ff521e4de", + "build/_data/committees/1427826.json:total_contributions": "6b684b6dd4d49f7236a452d5cdbd487d", + "build/_data/committees/1427828.json:contributions": "a6090392fa179b3cc5beb6103054ed9a", + "build/_data/committees/1427828.json:total_contributions": "273891ee609720f40baf687334f391a2", + "build/_data/committees/1428015.json:contributions": "14a1a06a563b7a436dd3d76f8e9472b7", + "build/_data/committees/1428015.json:total_contributions": "27f795fccffdf087aaa74e22e7d54594", + "build/_data/committees/1428595.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1428595.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1428671.json:contributions": "b3c5936c6c3a5ef7aee4e2c18da31f6d", + "build/_data/committees/1428671.json:total_contributions": "2ba9afe7d11fa733e018fc52ee695f59", + "build/_data/committees/1428755.json:contributions": "b30544be6e9402dc8da92fa3f88ff780", + "build/_data/committees/1428755.json:total_contributions": "906566f45a87eabcd8c5f9c2ad86aef7", + "build/_data/committees/1428904.json:contributions": "a9432f1b6df85635a864b7a4a52dafec", + "build/_data/committees/1428904.json:total_contributions": "acc49354212cad89870be5201492dfd0", + "build/_data/committees/1428941.json:contributions": "d3598dd51d8dad0515a866d1c4443024", + "build/_data/committees/1428941.json:total_contributions": "3ee773be0e4a23ac2548024ffacdf53c", + "build/_data/committees/1429072.json:contributions": "11d0e4da423cc6414b9cc9b0978aa8dc", + "build/_data/committees/1429072.json:total_contributions": "ad0c35fe3e685b555ff2554070204b97", + "build/_data/committees/1429104.json:contributions": "9fcc491498b5aa0c84e51be4e9b88276", + "build/_data/committees/1429104.json:total_contributions": "ca64e26b07bc4df88ac173055c4f3fb7", + "build/_data/committees/1429205.json:contributions": "2967c0295edd4acaa89d8cd63143ae93", + "build/_data/committees/1429205.json:total_contributions": "11a7938eb7acce9dbc0bb2978f7d946a", + "build/_data/committees/1429858.json:contributions": "f73f129087b11c251d4664941c0a8bdb", + "build/_data/committees/1429858.json:total_contributions": "5dc9330cd476ecc06921f2898dc6ca05", + "build/_data/committees/1430558.json:contributions": "34b0efe89877249b107df1e59dffc7a9", + "build/_data/committees/1430558.json:total_contributions": "e7c6b2079d43755857cd88a29c7f799f", + "build/_data/committees/1430904.json:contributions": "09f2646dffe4ff4b2a75976e30faa240", + "build/_data/committees/1430904.json:total_contributions": "27a2ce8f84991e3ea787a7b8d2311ee0", + "build/_data/committees/1431009.json:contributions": "074728729bd7f041e89934e31c5882d3", + "build/_data/committees/1431009.json:total_contributions": "6b708cb5a9509193751a277333b2b34b", + "build/_data/committees/1431908.json:contributions": "91b82d3523a0daeeb776231032fc8823", + "build/_data/committees/1431908.json:total_contributions": "56a1421b8891634201562fb240ef4601", + "build/_data/committees/1432118.json:contributions": "8e8fa942f50c911edc31a14d813bc700", + "build/_data/committees/1432118.json:total_contributions": "62dca49f0781bf26b4305bddb0414bea", + "build/_data/committees/1432998.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1432998.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1433122.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1433122.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1433587.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1433587.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1439246.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1439246.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1439424.json:contributions": "7bf28b649a7e9705d621a15ab88cdf44", + "build/_data/committees/1439424.json:total_contributions": "c48733e26777c2e5084b8e338f07f009", + "build/_data/committees/1439739.json:contributions": "afb54903f6b5f57dada0c4a030e69df0", + "build/_data/committees/1439739.json:total_contributions": "e53e9519ae1be3ab1743503d9ba760f5", + "build/_data/committees/1440818.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1440818.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1440969.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1440969.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1441375.json:contributions": "9c87bdc88f7bb3df11ac611e5093efb4", + "build/_data/committees/1441375.json:total_contributions": "a27f2147950ee52a890a9041ac244673", + "build/_data/committees/1441869.json:contributions": "36f67df2f8a688dc7e0c769a98870979", + "build/_data/committees/1441869.json:total_contributions": "83ab74a55c79d6f47b095f15392a0354", + "build/_data/committees/1442079.json:contributions": "5e21914fd91fa5b51d1fef4174dc4e38", + "build/_data/committees/1442079.json:total_contributions": "6c29af33fc5ccfe373dabec1632bd341", + "build/_data/committees/1442227.json:contributions": "8b6dcd0f70c042f5ae131571d5515a54", + "build/_data/committees/1442227.json:total_contributions": "0f61af8358a7030afb0bf295e1da75df", + "build/_data/committees/1442594.json:contributions": "0eacc423e140be7070448ce66a64679a", + "build/_data/committees/1442594.json:total_contributions": "13ebc711ddc3c8fee87c2334f2ab0f5e", + "build/_data/committees/1442792.json:contributions": "ec63493b5cbad0cddf0c214e1175f420", + "build/_data/committees/1442792.json:total_contributions": "a8dbc632ee5e06b20b97f46d49c98abd", + "build/_data/committees/1442804.json:contributions": "85de7be497b3d5024c1231d464bc1614", + "build/_data/committees/1442804.json:total_contributions": "a74d686c01892dd008cfd0457d983df1", + "build/_data/committees/1443971.json:contributions": "b8f96429d0f0d2f91549b89dce21bb49", + "build/_data/committees/1443971.json:total_contributions": "bc1023578c664c409bff0e626f39e00d", + "build/_data/committees/1443977.json:contributions": "b4ef544d9ead6273edfba872d0102143", + "build/_data/committees/1443977.json:total_contributions": "10fc4902dd34e475d4dd374df5378e4c", + "build/_data/committees/1444317.json:contributions": "3d8ebf6ab9be8269cf79a569d7dfffe5", + "build/_data/committees/1444317.json:total_contributions": "84dec8f59b77cbff5a8c0658cf67f7cb", + "build/_data/committees/1444350.json:contributions": "4143434fc9f5d3f531b86a7cdb1cbacb", + "build/_data/committees/1444350.json:total_contributions": "1ffcebacd7fd528fe11a4adcef42f8be", + "build/_data/committees/1444480.json:contributions": "362d3d991c19c0963f614a509f7674c9", + "build/_data/committees/1444480.json:total_contributions": "443d9ccdc5aa36541b775d1b3c8c70c8", + "build/_data/committees/1445852.json:contributions": "88b5a0a0b5c596e0451a3aa097bed42d", + "build/_data/committees/1445852.json:total_contributions": "b61123253576b845ac499ec0df5f7105", + "build/_data/committees/1445857.json:contributions": "a87b16a543512d3c45c4493ae1f3be9b", + "build/_data/committees/1445857.json:total_contributions": "2fdfbd2cb5895fbacda7fb6e5e95d959", + "build/_data/committees/1446236.json:contributions": "4946bab8ed848435ceb0c81114c63e1f", + "build/_data/committees/1446236.json:total_contributions": "d60c3b2b09a0bd4f23a1e17d7ac3e4a7", + "build/_data/committees/1446325.json:contributions": "82b8ee4a6173abb54c3c97bd4b2847ef", + "build/_data/committees/1446325.json:total_contributions": "23a03515f4f1de83b1ad84746dd7a66e", + "build/_data/committees/1446906.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1446906.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1448165.json:contributions": "17c0bffc1121cae1fa6cc6d98c788295", + "build/_data/committees/1448165.json:total_contributions": "49773b1dfa535209a8286d6dc0eb88f9", + "build/_data/committees/1448942.json:contributions": "1fdde16a9e0fa5a7a448371da8b9ec7a", + "build/_data/committees/1448942.json:total_contributions": "f9e539755793b12486e9feb8763b3d1e", + "build/_data/committees/1448946.json:contributions": "93c385abe36568a98f3c004d92f0ac95", + "build/_data/committees/1448946.json:total_contributions": "42483172fe79fe374b979044c62f2f4e", + "build/_data/committees/1448962.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1448962.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1449393.json:contributions": "e0e9e4784251938289f97140577e1ee9", + "build/_data/committees/1449393.json:total_contributions": "e600e111fd6cabaf75328ce4b960d800", + "build/_data/committees/1449857.json:contributions": "7f220547169faae8b3609897023963d4", + "build/_data/committees/1449857.json:total_contributions": "82ed95fb64c4b3a56de4a5dfc02acccb", + "build/_data/committees/1450180.json:contributions": "3548ba559622696f06ee0002698617eb", + "build/_data/committees/1450180.json:total_contributions": "71c643808db4a4e051129d0eb8f7df50", + "build/_data/committees/1451532.json:contributions": "42ef49098ee0406fe0dd24d6e5280547", + "build/_data/committees/1451532.json:total_contributions": "e706b0a19f8b7fa77c57de69dd04eb5b", + "build/_data/committees/1451915.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1451915.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1452451.json:contributions": "dc24b2bd4d84ca6ba40eae50ef9f931a", + "build/_data/committees/1452451.json:total_contributions": "a89d9dfdf37b4160028feba5a5232a92", + "build/_data/committees/1452659.json:contributions": "d757476ba0f9189496f5c52eafb4fdde", + "build/_data/committees/1452659.json:total_contributions": "9ac50b3c2866867a06c2c9d1e9cb973c", + "build/_data/committees/1452920.json:contributions": "a93c35105319748a25831c4e403262da", + "build/_data/committees/1452920.json:total_contributions": "7f06a6ed0369f590428d3db2003500a6", + "build/_data/committees/1452949.json:contributions": "81f95bd31b0db8e5fe574bb31cac7906", + "build/_data/committees/1452949.json:total_contributions": "01cde00420507cf80d77aaa44c95c3fa", + "build/_data/committees/1453436.json:contributions": "a1b64dd5214e4c12791bec389a7043c3", + "build/_data/committees/1453436.json:total_contributions": "f38fc87b40b473f9bdf6a6c7cda397a7", + "build/_data/committees/1453617.json:contributions": "2452c684e97b2d57e4e0d0b0ba11ef53", + "build/_data/committees/1453617.json:total_contributions": "0978b45c5082af60f5d71670e8c603e1", + "build/_data/committees/1453834.json:contributions": "0a9a7911828b0d126c49f92b311c1223", + "build/_data/committees/1453834.json:total_contributions": "2a7a689b11ac6398db242812b7cd2e31", + "build/_data/committees/1453879.json:contributions": "9bc2c908a34a503d0a2b24221cbde6be", + "build/_data/committees/1453879.json:total_contributions": "11ffd93ff06b303ca0a66b623e948045", + "build/_data/committees/1454035.json:contributions": "e3191f72a1a6ef50dd03ba46f173d9d3", + "build/_data/committees/1454035.json:total_contributions": "5d1dded142944721e9c81ac446764fff", + "build/_data/committees/1456590.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1456590.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1460829.json:contributions": "3ffa2d5cefcce3b8006bc58ab4879209", + "build/_data/committees/1460829.json:total_contributions": "d980e46a2e0fbd952bfe2394cf882ea9", + "build/_data/committees/1461262.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1461262.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1462429.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1462429.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1462967.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1462967.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1463441.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1463441.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/1463520.json:contributions": "5af94b43799b1e74c39781bd52bc1170", + "build/_data/committees/1463520.json:total_contributions": "d65a82a1320e5eb7af96d20d4aed29dc", + "build/_data/committees/1463590.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/1463590.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/495189.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/495189.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/741857.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/741857.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/782560.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/782560.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/790500.json:contributions": "b7fa34486f129799e0c37670e1173f4b", + "build/_data/committees/790500.json:total_contributions": "5304cd50fb8744a84f8513458e97728a", + "build/_data/committees/840002.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/840002.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/892160.json:contributions": "27f53b97284193e38c6c6edc31cd58fa", + "build/_data/committees/892160.json:total_contributions": "63f71f2932f4387f2ef1ea5edf9e61e2", + "build/_data/committees/931558.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/931558.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/942553734.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/942553734.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/943526.json:contributions": "2b72fb05370a459b8d8c0e4558b85436", + "build/_data/committees/943526.json:total_contributions": "a56b2dad7a87c0a4820811b9d123c7e1", + "build/_data/committees/960997.json:contributions": "3b80af8587b1dd9ab30e9197b0835e16", + "build/_data/committees/960997.json:total_contributions": "299ce85127219ae36c6c8aed36d4c102", + "build/_data/committees/971695.json:contributions": "65782456ceb6497a881698d52500f18b", + "build/_data/committees/971695.json:total_contributions": "e84a1808834f6ae19c05d1a87ace6aaf", + "build/_data/committees/983545.json:contributions": "1462dafdbf028b2c7482e3907b151a3f", + "build/_data/committees/983545.json:total_contributions": "c50e3d6147edb711c7d3dee7190ca66b", + "build/_data/committees/COAK-1538.json:contributions": "560ac9d60d9cc346042f674890d2cf95", + "build/_data/committees/COAK-1538.json:total_contributions": "6afee53fff721cd3a9cb842db805c21d", + "build/_data/committees/S10088.json:contributions": "4dac0e2d2b5e948cf0bb14e0e21b8ee2", + "build/_data/committees/S10088.json:total_contributions": "6af39393f113421089b634b5748419dc", + "build/_data/committees/major-donor-charles-freiberg.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/major-donor-charles-freiberg.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/major-donor-elizabeth-m-brown.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/major-donor-elizabeth-m-brown.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/major-donor-lca-architects.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/major-donor-lca-architects.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/major-donor-michael-r.-bloomberg.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/major-donor-michael-r.-bloomberg.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/committees/major-donor-strandberg.json:contributions": "d751713988987e9331980363e24189ce", + "build/_data/committees/major-donor-strandberg.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/elections/berkeley/2018-11-06.json:contributions_by_type": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/berkeley/2018-11-06.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/berkeley/2018-11-06.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:most_expensive_races": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:top_contributors": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:top_spenders": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/berkeley/2018-11-06.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/elections/berkeley/2018-11-06.json:total_contributions_by_source": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/oakland/2014-11-04.json:contributions_by_type": "b3e27a6ccffa8ac1463ea1bf8773244e", + "build/_data/elections/oakland/2014-11-04.json:largest_independent_expenditures": "dbcc9474c3ca751411c8307345d778be", + "build/_data/elections/oakland/2014-11-04.json:largest_small_proportion": "4253a03eafa1a90850db42b8c7c223c3", + "build/_data/elections/oakland/2014-11-04.json:most_expensive_races": "9c2f6ee33e209d01b8de0e03277ff85d", + "build/_data/elections/oakland/2014-11-04.json:top_contributors": "87e172dd6621ea16d56995c9d8ef4e01", + "build/_data/elections/oakland/2014-11-04.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2014-11-04.json:top_contributors_for_offices": "000d233b02668b7598b7bd642fd8edac", + "build/_data/elections/oakland/2014-11-04.json:top_spenders": "033b2c090b91b65cbd69b43b0719c4f8", + "build/_data/elections/oakland/2014-11-04.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2014-11-04.json:top_spenders_for_offices": "033b2c090b91b65cbd69b43b0719c4f8", + "build/_data/elections/oakland/2014-11-04.json:total_contributions": "538a810afd06f4931efd2856235d0698", + "build/_data/elections/oakland/2014-11-04.json:total_contributions_by_source": "4e9c4b28d4adb6144993249ffe3c5429", + "build/_data/elections/oakland/2016-11-08.json:contributions_by_type": "9791eba95d9acb6cdf2f3f7dd81c9c6e", + "build/_data/elections/oakland/2016-11-08.json:largest_independent_expenditures": "172ff076646891ccc7dbc78e171edb28", + "build/_data/elections/oakland/2016-11-08.json:largest_small_proportion": "b1785f13c9d8d0358b034df3fdb28a71", + "build/_data/elections/oakland/2016-11-08.json:most_expensive_races": "37e1fafea612423b192161a36a940983", + "build/_data/elections/oakland/2016-11-08.json:top_contributors": "78c21566e4f0df8a6cc816dd2b1e0bab", + "build/_data/elections/oakland/2016-11-08.json:top_contributors_for_measures": "fafdf4f3df472f289672a286cfdb8b07", + "build/_data/elections/oakland/2016-11-08.json:top_contributors_for_offices": "2d7940565d593b35df7624b1159f22c5", + "build/_data/elections/oakland/2016-11-08.json:top_spenders": "3508421f8486d1a5ee3ff9477920e5b2", + "build/_data/elections/oakland/2016-11-08.json:top_spenders_for_measures": "3508421f8486d1a5ee3ff9477920e5b2", + "build/_data/elections/oakland/2016-11-08.json:top_spenders_for_offices": "0a94b30e262da955731254c2aad6a582", + "build/_data/elections/oakland/2016-11-08.json:total_contributions": "257f92af03e43163914b1ad129074c61", + "build/_data/elections/oakland/2016-11-08.json:total_contributions_by_source": "1456427350c309ce133fa3702fd321de", + "build/_data/elections/oakland/2018-06-05.json:contributions_by_type": "fa50b5766c458eab64b21eaef0ec9077", + "build/_data/elections/oakland/2018-06-05.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/oakland/2018-06-05.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2018-06-05.json:most_expensive_races": "e127470a240a9b07f03560e44db3679f", + "build/_data/elections/oakland/2018-06-05.json:top_contributors": "e07a8004fd31fe14db97a18dd73efcfa", + "build/_data/elections/oakland/2018-06-05.json:top_contributors_for_measures": "58891218170e33b11ecc844f84cac353", + "build/_data/elections/oakland/2018-06-05.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2018-06-05.json:top_spenders": "bb977a9ff5dd9f465beff1402eafe90b", + "build/_data/elections/oakland/2018-06-05.json:top_spenders_for_measures": "bb977a9ff5dd9f465beff1402eafe90b", + "build/_data/elections/oakland/2018-06-05.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2018-06-05.json:total_contributions": "508a51aca7c8fc09ec1d5a1cfdfff756", + "build/_data/elections/oakland/2018-06-05.json:total_contributions_by_source": "99284822b12f888e26bb7f952a9187a9", + "build/_data/elections/oakland/2018-11-06.json:contributions_by_type": "a98e914bb7bb4b1ab76149b85d25ad3a", + "build/_data/elections/oakland/2018-11-06.json:largest_independent_expenditures": "c27080a59bebb0861c502328e58db3d6", + "build/_data/elections/oakland/2018-11-06.json:largest_small_proportion": "45bcded1bb8ecab20b85effd7fd80f1c", + "build/_data/elections/oakland/2018-11-06.json:most_expensive_races": "7faf5ae9dae02baf2724e7ab7408445b", + "build/_data/elections/oakland/2018-11-06.json:top_contributors": "ee9dae064ea64761200c941aab988951", + "build/_data/elections/oakland/2018-11-06.json:top_contributors_for_measures": "a55f4cb839402c4570af0855bbb95f4f", + "build/_data/elections/oakland/2018-11-06.json:top_contributors_for_offices": "2a7ae3f516dce24eb4c192000783b6d9", + "build/_data/elections/oakland/2018-11-06.json:top_spenders": "f992218adf351389c8f95e638674152b", + "build/_data/elections/oakland/2018-11-06.json:top_spenders_for_measures": "f992218adf351389c8f95e638674152b", + "build/_data/elections/oakland/2018-11-06.json:top_spenders_for_offices": "5a6ca98aae93001e90d20b50774ecc3f", + "build/_data/elections/oakland/2018-11-06.json:total_contributions": "e8513100b7fe57b18a10e39420c309b6", + "build/_data/elections/oakland/2018-11-06.json:total_contributions_by_source": "5bf7e28d0bd27293e26892cd6909106e", + "build/_data/elections/oakland/2020-03-03.json:contributions_by_type": "6fec8f7549f5af465df41ac59eee37ca", + "build/_data/elections/oakland/2020-03-03.json:largest_independent_expenditures": "3f1351552b81746d6cade0954dce66a2", + "build/_data/elections/oakland/2020-03-03.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2020-03-03.json:most_expensive_races": "a1618ddf5e3bcec039331b01ca75aa6c", + "build/_data/elections/oakland/2020-03-03.json:top_contributors": "71fc90db78579aa8fd68f7f968641c4e", + "build/_data/elections/oakland/2020-03-03.json:top_contributors_for_measures": "cd69324815e1745a7bbba9bc35520054", + "build/_data/elections/oakland/2020-03-03.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2020-03-03.json:top_spenders": "8b24cd0707eb5dd334df8326d6cb2db6", + "build/_data/elections/oakland/2020-03-03.json:top_spenders_for_measures": "8b24cd0707eb5dd334df8326d6cb2db6", + "build/_data/elections/oakland/2020-03-03.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2020-03-03.json:total_contributions": "31cdc0d4bf8cab16a51da5fca67b34c6", + "build/_data/elections/oakland/2020-03-03.json:total_contributions_by_source": "0865f65bef0b894beb4652357ddc0018", + "build/_data/elections/oakland/2020-11-03.json:contributions_by_type": "44b7644585d558055ee0bb6f0da807ca", + "build/_data/elections/oakland/2020-11-03.json:largest_independent_expenditures": "a5c830e9f071580d5a0f237009c2fa99", + "build/_data/elections/oakland/2020-11-03.json:largest_small_proportion": "fd8b28c915c9ef3d2bd7a23f7205ce00", + "build/_data/elections/oakland/2020-11-03.json:most_expensive_races": "a1ba8a12eac39490695e0e529416339a", + "build/_data/elections/oakland/2020-11-03.json:top_contributors": "af86fad0f6a1681ff41c659831705a53", + "build/_data/elections/oakland/2020-11-03.json:top_contributors_for_measures": "c3a5ab13181548b2bb96906e9cbc91ed", + "build/_data/elections/oakland/2020-11-03.json:top_contributors_for_offices": "acb8c84b415ac2b1dfa0f9fe52861b0c", + "build/_data/elections/oakland/2020-11-03.json:top_spenders": "075fe5248189a6c99ddb2fd2325b7938", + "build/_data/elections/oakland/2020-11-03.json:top_spenders_for_measures": "075fe5248189a6c99ddb2fd2325b7938", + "build/_data/elections/oakland/2020-11-03.json:top_spenders_for_offices": "5dda148d2265b4b93dfc399a3d5d2126", + "build/_data/elections/oakland/2020-11-03.json:total_contributions": "d68ed1f0346ea69399812c2879e2596e", + "build/_data/elections/oakland/2020-11-03.json:total_contributions_by_source": "72e1293410a574d302807e187aebb7da", + "build/_data/elections/oakland/2022-06-07.json:contributions_by_type": "186e32d64b94840aecc5a6c12d72a6f3", + "build/_data/elections/oakland/2022-06-07.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/oakland/2022-06-07.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2022-06-07.json:most_expensive_races": "38f33c35b32f71bf8d76802252f18670", + "build/_data/elections/oakland/2022-06-07.json:top_contributors": "1190a9de156f8dda36dd2c52bf28cf18", + "build/_data/elections/oakland/2022-06-07.json:top_contributors_for_measures": "3eaf851d0c39b46701a3fe08774b6a7b", + "build/_data/elections/oakland/2022-06-07.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2022-06-07.json:top_spenders": "bf9038d122162b66279ad7dcbec15a85", + "build/_data/elections/oakland/2022-06-07.json:top_spenders_for_measures": "bf9038d122162b66279ad7dcbec15a85", + "build/_data/elections/oakland/2022-06-07.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2022-06-07.json:total_contributions": "2fdfbd2cb5895fbacda7fb6e5e95d959", + "build/_data/elections/oakland/2022-06-07.json:total_contributions_by_source": "b732d0981140a0eaa0e9733074be176b", + "build/_data/elections/oakland/2022-11-08.json:contributions_by_type": "b884bab8145d901447770a3433738072", + "build/_data/elections/oakland/2022-11-08.json:largest_independent_expenditures": "a3fdc8e6dd95a11f9753d1e2b5015cd6", + "build/_data/elections/oakland/2022-11-08.json:largest_small_proportion": "627fb92f83cd9f24684a7ebfedc447ac", + "build/_data/elections/oakland/2022-11-08.json:most_expensive_races": "3a41aefe7c22646073f03d1085b47c1f", + "build/_data/elections/oakland/2022-11-08.json:top_contributors": "bb1a28a7050f570e234afa3b9a3df2df", + "build/_data/elections/oakland/2022-11-08.json:top_contributors_for_measures": "4d021ebfb086a85927e20a507cb0a6b6", + "build/_data/elections/oakland/2022-11-08.json:top_contributors_for_offices": "90544343c72f305820db8955b718ba7f", + "build/_data/elections/oakland/2022-11-08.json:top_spenders": "1e58518c153b07b869aba4d82953c205", + "build/_data/elections/oakland/2022-11-08.json:top_spenders_for_measures": "1e58518c153b07b869aba4d82953c205", + "build/_data/elections/oakland/2022-11-08.json:top_spenders_for_offices": "5af7881ff4a47d31fed40980f773b3e7", + "build/_data/elections/oakland/2022-11-08.json:total_contributions": "86650112988fe509c7b87f3508e24330", + "build/_data/elections/oakland/2022-11-08.json:total_contributions_by_source": "9e4c405c07293ab8397a2f62c6e0b776", + "build/_data/elections/oakland/2023-11-07.json:contributions_by_type": "bb2037c2185d5f28dd8372fd838c74b9", + "build/_data/elections/oakland/2023-11-07.json:largest_independent_expenditures": "922ab16361bb5a539f4d0cf731cf5ca5", + "build/_data/elections/oakland/2023-11-07.json:largest_small_proportion": "5e5428d799a22263ae8f3d7e4025a7f3", + "build/_data/elections/oakland/2023-11-07.json:most_expensive_races": "95c53e5fdb6e59550690cd3ad8865cb7", + "build/_data/elections/oakland/2023-11-07.json:top_contributors": "033b6cbaca24715c7153e497af7a788b", + "build/_data/elections/oakland/2023-11-07.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2023-11-07.json:top_contributors_for_offices": "5393947fbf113e7f50eb393663d246c5", + "build/_data/elections/oakland/2023-11-07.json:top_spenders": "085ec8c96f3354ea505f66e52f839c83", + "build/_data/elections/oakland/2023-11-07.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2023-11-07.json:top_spenders_for_offices": "085ec8c96f3354ea505f66e52f839c83", + "build/_data/elections/oakland/2023-11-07.json:total_contributions": "92ee4885ca9f76a60a0bfb8447905620", + "build/_data/elections/oakland/2023-11-07.json:total_contributions_by_source": "3741f0827ffa4761819e61302f964d82", + "build/_data/elections/oakland/2024-11-05.json:contributions_by_type": "b1ceac551989a0fb96fc9cf67679c450", + "build/_data/elections/oakland/2024-11-05.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/oakland/2024-11-05.json:largest_small_proportion": "c8954756ceafe6c199d3e2fcfddc0f09", + "build/_data/elections/oakland/2024-11-05.json:most_expensive_races": "cf8550d1e20a8b9de05e897df016b141", + "build/_data/elections/oakland/2024-11-05.json:top_contributors": "fefbae9982b1e70d2bba6b0270ff6085", + "build/_data/elections/oakland/2024-11-05.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2024-11-05.json:top_contributors_for_offices": "3894a639f89a05433c44872f58924244", + "build/_data/elections/oakland/2024-11-05.json:top_spenders": "7ce4bfb269b114ae15bf2954602e43b7", + "build/_data/elections/oakland/2024-11-05.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/oakland/2024-11-05.json:top_spenders_for_offices": "7ce4bfb269b114ae15bf2954602e43b7", + "build/_data/elections/oakland/2024-11-05.json:total_contributions": "dcb3535d0bbc6bf55e50ccc604cce784", + "build/_data/elections/oakland/2024-11-05.json:total_contributions_by_source": "b46198bfb845ef29ad690dad77d2b729", + "build/_data/elections/sf/2016-11-08.json:contributions_by_type": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2016-11-08.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2016-11-08.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:most_expensive_races": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:top_contributors": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:top_spenders": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2016-11-08.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/elections/sf/2016-11-08.json:total_contributions_by_source": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2018-06-05.json:contributions_by_type": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2018-06-05.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2018-06-05.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:most_expensive_races": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:top_contributors": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:top_spenders": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-06-05.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/elections/sf/2018-06-05.json:total_contributions_by_source": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2018-11-06.json:contributions_by_type": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2018-11-06.json:largest_independent_expenditures": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/elections/sf/2018-11-06.json:largest_small_proportion": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:most_expensive_races": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:top_contributors": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:top_contributors_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:top_contributors_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:top_spenders": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:top_spenders_for_measures": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:top_spenders_for_offices": "d751713988987e9331980363e24189ce", + "build/_data/elections/sf/2018-11-06.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", + "build/_data/elections/sf/2018-11-06.json:total_contributions_by_source": "99914b932bd37a50b983c5e7c90ae93b", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:contributions_by_region": "e571957339d3c3d73eb034dbb25f8835", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:contributions_by_type": "950149638b42657d83042d3f8bfa957b", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:id": "6364d3f0f495b6ab9dcf8d3b5c6e0b01", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:name": "eb6ec27958d9bca7bfa45572431a754d", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:number": "88e255c82e2436f29131079d4a77383c", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:opposing_organizations": "0a25f9b54f6229dfc12b9f0138dc5c4e", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:summary": "6f6be72e01df452e369115893430d314", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:title": "eb6ec27958d9bca7bfa45572431a754d", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:total_contributions": "619968d2a9ce71ae85fc78ecbd00a0bf", + "build/_data/referendum_opposing/oakland/2016-11-08/infrastructure-and-housing-bonds.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:id": "c16a5320fa475530d9583c34fd356ef5", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:name": "1deee262b8e3d71e4f1a2e2fb931e4ac", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:number": "1585c7c6763885ef4af2368e125bd133", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:summary": "a3bf220a11071a5422e537392c8e6af9", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:title": "1deee262b8e3d71e4f1a2e2fb931e4ac", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:id": "34173cb38f07f89ddbebc2ac9128303f", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:name": "2a052e8a52b3888cffcd83fecab3d72b", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:number": "877d595d96b9590e48db86d3aa575922", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:summary": "e83c325d6e5198c54ec9e3aaa3f5944c", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:title": "2a052e8a52b3888cffcd83fecab3d72b", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:id": "33e75ff09dd601bbe69f351039152189", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:name": "fe8464c74afa486e60de8daf25686988", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:number": "d12b510f7377b3774b4231ae27312b41", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:summary": "2bb32d818a92893ae292c5c536d13678", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:title": "fe8464c74afa486e60de8daf25686988", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2016-11-08/oakland-school-bond.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:id": "182be0c5cdcd5072bb1864cdee4d3d6e", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:name": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:number": "a9a8662b61b46a48076148471844133a", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:summary": "8741703b6527f385eaef7f29142e2f1b", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:title": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2016-11-08/police-commission.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:contributions_by_region": "f06120e23bff1fa3b58c0372b2cec2df", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:contributions_by_type": "bd80d5fb0b70b85cc99412255a9f50a0", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:id": "6ea9ab1baa0efb9e19094440c317e21b", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:name": "97042fa8c844251f494d8e220126e53f", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:number": "6d607fec87bb250f2b79413f1ac59a72", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:opposing_organizations": "a82e6d80c756de2f87bdd1cc39eeb432", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:summary": "2c537f308ee8729370a768ddd46f7143", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:title": "97042fa8c844251f494d8e220126e53f", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:total_contributions": "b66372f833255262daec8b7ab581f96d", + "build/_data/referendum_opposing/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:id": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:name": "389727e7c959af81a158d9d82f07668a", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:number": "82edce195c3fc73701183f8dbccb4f74", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:summary": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:title": "389727e7c959af81a158d9d82f07668a", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:id": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:name": "2f289baa3793cc2dcf1a20f619713fc8", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:number": "4d388c1af2680d62430c32d0b17eb409", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:summary": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:title": "2f289baa3793cc2dcf1a20f619713fc8", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2018-06-05/library-parcel-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:id": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:name": "63dfa103d58e3c80fb982fe2e6ff857a", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:number": "3cf3aef9902754f1c9178e32f5fe1ddc", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:summary": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:title": "63dfa103d58e3c80fb982fe2e6ff857a", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-06-05/regional-measure-3.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:id": "37693cfc748049e45d87b8c7d8b9aacd", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:name": "6dde31d4bc74b77d3e844f19d446e333", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:number": "cbad6fdbd6787429beb300decf3a26e3", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:summary": "88c399fed26f00880706deb589032efe", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:title": "6dde31d4bc74b77d3e844f19d446e333", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/cannabis-business-tax.json:voters_edge_url": "a5bb8f1334cbe57bd38e324953edab82", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:id": "02e74f10e0327ad868d138f2b4fdd6f0", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:name": "180a27c3cb7ea8873c70efcc285e1681", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:number": "78d380d5ebd0aa3f21a5d6ab3eef7ba8", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:summary": "53f14808f1af062717fef1be58c4e206", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:title": "180a27c3cb7ea8873c70efcc285e1681", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:voters_edge_url": "8ddfea5fe68adbef70f83c7e211ca861", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:contributions_by_region": "760182273f48324df89e6ba79c45fa1d", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:contributions_by_type": "96e5192bd0e04014bdf6653877eef1d0", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:id": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:name": "65e153162a8889a827184d148d7dd677", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:number": "0c80fd9a9295a8c4321b5530bfaf1443", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:opposing_organizations": "308c14b1a66ac99fada8e950a459d743", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:summary": "0efcb139b5e5ed23eba5f17b62dac6bc", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:title": "65e153162a8889a827184d148d7dd677", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:total_contributions": "c9786ea5816349f2d621cd87ae6fe53d", + "build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json:voters_edge_url": "fb7bd3007b1ee0e8090fe2a0b76497c7", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:contributions_by_region": "a31695923cc4ab507d99693a85da2ebd", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:contributions_by_type": "cc44f85689020354d4bb087a1e9c25c8", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:id": "b6d767d2f8ed5d21a44b0e5886680cb9", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:name": "5477e90fbd3bbd1adb1118dcf3d5747b", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:number": "4ea749d605db5836f396d7d5e00fb2d7", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:opposing_organizations": "327e1adfca53226bab427a0f70b3747a", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:summary": "d1ac73300f001c17f327fde34ad6b41a", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:title": "5477e90fbd3bbd1adb1118dcf3d5747b", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:total_contributions": "2bf438364946c4386ea48304d9c77713", + "build/_data/referendum_opposing/oakland/2018-11-06/oakland-children-s-initiative.json:voters_edge_url": "52da577cc711ed459952dc884d0eb662", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:id": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:name": "5d9a67f584e98e5480545277584075b7", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:number": "28ad8ec7597298847723ea59272ef8e5", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:summary": "477987cb65bea3ec29ef8baf500d7eeb", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:title": "5d9a67f584e98e5480545277584075b7", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2018-11-06/tiered-real-property-transfer-tax.json:voters_edge_url": "6f55bfe8137b9c4e1f70b2205d2293fd", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:contributions_by_region": "760182273f48324df89e6ba79c45fa1d", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:contributions_by_type": "96e5192bd0e04014bdf6653877eef1d0", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:id": "1ff1de774005f8da13f42943881c655f", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:name": "68d1c9aec518a6e97ed41225f598a5e7", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:number": "ba5a67fc62aa57dce313f41ff7fc9db4", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:opposing_organizations": "308c14b1a66ac99fada8e950a459d743", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:summary": "590b8378ab1c675dc99d1e6cc009a302", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:title": "68d1c9aec518a6e97ed41225f598a5e7", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:total_contributions": "c9786ea5816349f2d621cd87ae6fe53d", + "build/_data/referendum_opposing/oakland/2018-11-06/vacant-property-parcel-tax.json:voters_edge_url": "4c38e5bbd762ddb8b5fe42b1789280bc", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:id": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:name": "55833eabb5457b1cb3d632978f57cf2a", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:number": "0f9d6cd345c5f169ec107f2ecdecc260", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:summary": "ddf5169181d06674f80370e114912ed4", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:title": "55833eabb5457b1cb3d632978f57cf2a", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit.json:voters_edge_url": "2756c1fc58eb45bff461838cda79c634", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:contributions_by_region": "4fd9e4471e241d2066363a375e24b60d", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:contributions_by_type": "e7ceb92b9402c7ed16c0384c1b223bfc", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:id": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:name": "1ff799a42f111fee9abc9ed19f4b7185", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:number": "b104b65dc6e64f9d8c41edd2a10b91a0", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:opposing_organizations": "5f638338e221402f7c7eabf267350f4a", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:summary": "d9cee37ee90e7a577164dea174b51ee6", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:title": "1ff799a42f111fee9abc9ed19f4b7185", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:total_contributions": "7436887d2e8c97b4620b1644acc25067", + "build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:voters_edge_url": "ed957c3e063c8f79616211a1cf626c2e", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:id": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:name": "bbb66a4061ba1843327d6f98c69f6f0a", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:number": "c371959532a612e1f507342c429350c8", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:summary": "eacb0889481956309417761c9de60d99", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:title": "bbb66a4061ba1843327d6f98c69f6f0a", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-03-03/official-city-newspaper.json:voters_edge_url": "4cebb3beac226ac8128990d1f103393a", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:id": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:name": "decac3ebf8b3a87cfa311b8034f72537", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:number": "0c80fd9a9295a8c4321b5530bfaf1443", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:summary": "ae15043e55b3358a9a5756d0191e298f", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:title": "decac3ebf8b3a87cfa311b8034f72537", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2020-11-03/ousd-facilities-bond.json:voters_edge_url": "4ce90fbfb34f5271046d9892d23100d9", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:id": "1f0e3dad99908345f7439f8ffabdffc4", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:name": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:number": "6f433579d8af9a8b5edf77f66008e9a0", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:summary": "455522304ab1c944bd410d01963bcad3", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:title": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/police-commission.json:voters_edge_url": "5fe1e0a1d637ff03a0365d9fcdac9b23", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:id": "3c59dc048e8850243be8079a5c74d079", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:name": "1ade0136c041da987a7deb91288f6f4e", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:number": "b98f6fdf08280ee12acc96221df8687c", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:summary": "6c2e3478632fa9806d79f28c815e0d6e", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:title": "1ade0136c041da987a7deb91288f6f4e", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/removing-fines-limit.json:voters_edge_url": "974cb116e9c60b6c753321a94c0cb31a", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:id": "98f13708210194c475687be6106a3b84", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:name": "2795bba6c0e5c6318b4c369bb010dd36", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:number": "5ad7c96a158df98145590377f0701c32", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:summary": "a88fabb96a290afaaebcc4d5bd534fbf", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:title": "2795bba6c0e5c6318b4c369bb010dd36", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2020-11-03/youth-voting.json:voters_edge_url": "28fc5cdb45c670d59823542fa22f3c3e", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:id": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:name": "75a49508415de3f3b758cfc3f60315c0", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:number": "4d036fd58ceb15b0074e51a919eedb3d", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:summary": "fadd7312d0ede6531f3b8082b559da52", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:title": "75a49508415de3f3b758cfc3f60315c0", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:id": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:name": "9bcb9df571bdd166b3396d286d7560fe", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:number": "f80628623e82f1aa13b933bd9b39a321", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:summary": "dca5fef59b854f5df3ad76b12f8b3f32", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:title": "9bcb9df571bdd166b3396d286d7560fe", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:id": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:name": "f0cc5711611e7f5d4790ac97da0eed90", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:number": "b104b65dc6e64f9d8c41edd2a10b91a0", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:summary": "751a7cf991b3b2a684cdaad37d14f1e1", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:title": "f0cc5711611e7f5d4790ac97da0eed90", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/affordable-rental-housing.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:id": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:name": "afad51c9e90322c85ee667b041a62912", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:number": "c371959532a612e1f507342c429350c8", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:summary": "19f8ad4e1ba20d6196e52672e6ae9aad", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:title": "afad51c9e90322c85ee667b041a62912", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:id": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:name": "13933113391a7682b41d722608c6c991", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:number": "ba5a67fc62aa57dce313f41ff7fc9db4", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:summary": "33cb4f7aa4bae721bbba67db14726632", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:title": "13933113391a7682b41d722608c6c991", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:id": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:name": "607afcf36c3ea82f9fbcf07b2a281fb5", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:number": "cbad6fdbd6787429beb300decf3a26e3", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:summary": "aefdd596491a870189b2bc777c32e5eb", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:title": "607afcf36c3ea82f9fbcf07b2a281fb5", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:id": "d3d9446802a44259755d38e6d163e820", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:name": "fc94ddee8ad98a076361f779996ea95f", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:number": "28ad8ec7597298847723ea59272ef8e5", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:summary": "7a1f0364ac071964c8376a0ca0698367", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:title": "fc94ddee8ad98a076361f779996ea95f", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/good-governance-charter-reform.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:id": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:name": "31e303f3de22632a146991919d5a54b9", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:number": "0f9d6cd345c5f169ec107f2ecdecc260", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:summary": "95de36e44e2da1e7bd89b44de1bff137", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:title": "31e303f3de22632a146991919d5a54b9", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/non-citizen-voting.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:id": "70efdf2ec9b086079795c442636b55fb", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:name": "5a6536bc3b5ace3a0a116313b89ca88b", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:number": "838f266367547c028630224986fe1218", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:summary": "18de46848b512db9c4afbab478895562", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:title": "5a6536bc3b5ace3a0a116313b89ca88b", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:id": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:name": "f7904339b644c2f122f9ff077906edbb", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:number": "0c80fd9a9295a8c4321b5530bfaf1443", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:summary": "42f469654348f21e229ddde94a74f178", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:title": "f7904339b644c2f122f9ff077906edbb", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:id": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:name": "b570b668dc9f7d96715ebb78499a5d85", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:number": "d3a5591d15f32f71dbf4cdb214cf5d40", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:opposing_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:summary": "f368955532974699ab322925d0208433", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:title": "b570b668dc9f7d96715ebb78499a5d85", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_opposing/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:contributions_by_region": "9da344584c3b665f21cd2e1286875363", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:contributions_by_type": "16db05cf3170ce33c52066093b81a2ab", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:id": "6364d3f0f495b6ab9dcf8d3b5c6e0b01", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:name": "eb6ec27958d9bca7bfa45572431a754d", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:number": "88e255c82e2436f29131079d4a77383c", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:summary": "6f6be72e01df452e369115893430d314", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:supporting_organizations": "ff40cff0ccc8f4353adb7ef6fcbfe0e6", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:title": "eb6ec27958d9bca7bfa45572431a754d", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:total_contributions": "def1c17680aca626f4fc7e8a1c50d72c", + "build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:contributions_by_region": "087a9dea8c6576af16a12c6e3b8da5f3", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:contributions_by_type": "fb632227f019650d085db95c6bfcc034", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:id": "c16a5320fa475530d9583c34fd356ef5", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:name": "1deee262b8e3d71e4f1a2e2fb931e4ac", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:number": "1585c7c6763885ef4af2368e125bd133", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:summary": "a3bf220a11071a5422e537392c8e6af9", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:supporting_organizations": "340c1111fe5d5edf480d1b26e230fed1", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:title": "1deee262b8e3d71e4f1a2e2fb931e4ac", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:total_contributions": "a407e95c420946c036f1c312aed0a643", + "build/_data/referendum_supporting/oakland/2016-11-08/just-cause-for-eviction-and-rent-adjustment.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:id": "34173cb38f07f89ddbebc2ac9128303f", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:name": "2a052e8a52b3888cffcd83fecab3d72b", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:number": "877d595d96b9590e48db86d3aa575922", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:summary": "e83c325d6e5198c54ec9e3aaa3f5944c", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:title": "2a052e8a52b3888cffcd83fecab3d72b", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2016-11-08/lease-term-for-city-owned-or-city-controlled-property.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:contributions_by_region": "50c6c33daf6a99fcde7cafff89de309a", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:contributions_by_type": "830f4e117848dd1e292b315cdd110310", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:id": "33e75ff09dd601bbe69f351039152189", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:name": "fe8464c74afa486e60de8daf25686988", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:number": "d12b510f7377b3774b4231ae27312b41", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:summary": "2bb32d818a92893ae292c5c536d13678", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:supporting_organizations": "3ad0a8316b968b8a7b44ea15a2ffa738", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:title": "fe8464c74afa486e60de8daf25686988", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:total_contributions": "00de63ef5abbb5cdd92c4f148fcbf102", + "build/_data/referendum_supporting/oakland/2016-11-08/oakland-school-bond.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:contributions_by_region": "7aad2adae9899ec337ae8a0fbd00b932", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:contributions_by_type": "e1e9462730782bd786b93dafdf811ea8", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:id": "182be0c5cdcd5072bb1864cdee4d3d6e", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:name": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:number": "a9a8662b61b46a48076148471844133a", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:summary": "8741703b6527f385eaef7f29142e2f1b", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:supporting_organizations": "9ef97cb5dc8f509c76242570bff34591", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:title": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:total_contributions": "0211bb3848c6abca3df733b985b3fd74", + "build/_data/referendum_supporting/oakland/2016-11-08/police-commission.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:contributions_by_region": "2ff11029c0c9108dc3c80647f717382c", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:contributions_by_type": "a63a46ed3fa72aaee1d46b199b718f4b", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:id": "6ea9ab1baa0efb9e19094440c317e21b", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:name": "97042fa8c844251f494d8e220126e53f", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:number": "6d607fec87bb250f2b79413f1ac59a72", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:summary": "2c537f308ee8729370a768ddd46f7143", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:supporting_organizations": "4e911cc548fca4c618f96db424528821", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:title": "97042fa8c844251f494d8e220126e53f", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:total_contributions": "87a5daf7f9584be229602960c1b28ea8", + "build/_data/referendum_supporting/oakland/2016-11-08/sugar-sweetened-beverage-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:id": "1679091c5a880faf6fb5e6087eb1b2dc", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:name": "389727e7c959af81a158d9d82f07668a", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:number": "82edce195c3fc73701183f8dbccb4f74", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:summary": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:title": "389727e7c959af81a158d9d82f07668a", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/alameda-county-sales-tax-for-childcare-and-education.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:contributions_by_region": "00c22bfc17cd0bf580e8fc2884155ed7", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:contributions_by_type": "415fbfc280e4ec83f6a579d20c8f55f0", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:id": "8f14e45fceea167a5a36dedd4bea2543", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:name": "2f289baa3793cc2dcf1a20f619713fc8", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:number": "4d388c1af2680d62430c32d0b17eb409", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:summary": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:supporting_organizations": "503de1d2c6fa750813f7f4443c05ffe9", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:title": "2f289baa3793cc2dcf1a20f619713fc8", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:total_contributions": "508a51aca7c8fc09ec1d5a1cfdfff756", + "build/_data/referendum_supporting/oakland/2018-06-05/library-parcel-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:id": "e4da3b7fbbce2345d7772b0674a318d5", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:name": "63dfa103d58e3c80fb982fe2e6ff857a", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:number": "3cf3aef9902754f1c9178e32f5fe1ddc", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:summary": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:title": "63dfa103d58e3c80fb982fe2e6ff857a", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-06-05/regional-measure-3.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:id": "37693cfc748049e45d87b8c7d8b9aacd", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:name": "6dde31d4bc74b77d3e844f19d446e333", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:number": "cbad6fdbd6787429beb300decf3a26e3", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:summary": "88c399fed26f00880706deb589032efe", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:title": "6dde31d4bc74b77d3e844f19d446e333", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/cannabis-business-tax.json:voters_edge_url": "a5bb8f1334cbe57bd38e324953edab82", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:contributions_by_region": "497f33034d4d809679d727b657795542", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:contributions_by_type": "3df1e15b36f7fe742dd8da9d066f8d69", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:id": "02e74f10e0327ad868d138f2b4fdd6f0", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:name": "180a27c3cb7ea8873c70efcc285e1681", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:number": "78d380d5ebd0aa3f21a5d6ab3eef7ba8", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:summary": "53f14808f1af062717fef1be58c4e206", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:supporting_organizations": "adb507ed4d202bdde131fab41581812a", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:title": "180a27c3cb7ea8873c70efcc285e1681", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:total_contributions": "de01ae45cf33c7d333f734c3acc4ebf5", + "build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json:voters_edge_url": "8ddfea5fe68adbef70f83c7e211ca861", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:contributions_by_region": "528023734ecd050ca099b4315aa4b37b", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:contributions_by_type": "547aa7e829b57af42fc8b65b84a9bf23", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:id": "4e732ced3463d06de0ca9a15b6153677", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:name": "65e153162a8889a827184d148d7dd677", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:number": "0c80fd9a9295a8c4321b5530bfaf1443", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:summary": "0efcb139b5e5ed23eba5f17b62dac6bc", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:supporting_organizations": "32c5d63a2c6e00053dbaf45b45ff8182", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:title": "65e153162a8889a827184d148d7dd677", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:total_contributions": "b8f0f94ced5f50e343a1bda59d3dcfc0", + "build/_data/referendum_supporting/oakland/2018-11-06/just-cause-eviction-amendments.json:voters_edge_url": "fb7bd3007b1ee0e8090fe2a0b76497c7", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:contributions_by_region": "121851edc40460c5fb101ca41df97a5d", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:contributions_by_type": "593bfe93edba631fe6de3f7f9f80c589", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:id": "b6d767d2f8ed5d21a44b0e5886680cb9", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:name": "5477e90fbd3bbd1adb1118dcf3d5747b", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:number": "4ea749d605db5836f396d7d5e00fb2d7", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:summary": "d1ac73300f001c17f327fde34ad6b41a", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:supporting_organizations": "2bfe8280fb31ea419e8ae53772ec7f2a", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:title": "5477e90fbd3bbd1adb1118dcf3d5747b", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:total_contributions": "a6e5953f321d4e3fbcce2d2d281064d1", + "build/_data/referendum_supporting/oakland/2018-11-06/oakland-children-s-initiative.json:voters_edge_url": "52da577cc711ed459952dc884d0eb662", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:contributions_by_region": "124834ec352fad0ce83df12c1632d76a", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:contributions_by_type": "3e481cd42535ea2650fc7b9dcb4bfc8e", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:id": "8e296a067a37563370ded05f5a3bf3ec", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:name": "5d9a67f584e98e5480545277584075b7", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:number": "28ad8ec7597298847723ea59272ef8e5", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:summary": "477987cb65bea3ec29ef8baf500d7eeb", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:supporting_organizations": "be70fd0825cca2403e8ecfc5353edaba", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:title": "5d9a67f584e98e5480545277584075b7", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:total_contributions": "8b1f880a37d908c0a3153009b0122786", + "build/_data/referendum_supporting/oakland/2018-11-06/tiered-real-property-transfer-tax.json:voters_edge_url": "6f55bfe8137b9c4e1f70b2205d2293fd", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:id": "1ff1de774005f8da13f42943881c655f", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:name": "68d1c9aec518a6e97ed41225f598a5e7", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:number": "ba5a67fc62aa57dce313f41ff7fc9db4", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:summary": "590b8378ab1c675dc99d1e6cc009a302", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:title": "68d1c9aec518a6e97ed41225f598a5e7", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:total_contributions": "cfcd208495d565ef66e7dff9f98764da", + "build/_data/referendum_supporting/oakland/2018-11-06/vacant-property-parcel-tax.json:voters_edge_url": "4c38e5bbd762ddb8b5fe42b1789280bc", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:id": "eccbc87e4b5ce2fe28308fd9f2a7baf3", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:name": "55833eabb5457b1cb3d632978f57cf2a", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:number": "0f9d6cd345c5f169ec107f2ecdecc260", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:summary": "ddf5169181d06674f80370e114912ed4", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:title": "55833eabb5457b1cb3d632978f57cf2a", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit.json:voters_edge_url": "2756c1fc58eb45bff461838cda79c634", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:contributions_by_region": "60bd0a86c91f7ec52007cd98b31ee16d", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:contributions_by_type": "204e1aec1e24308ad633f2d08fe3cbac", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:id": "c4ca4238a0b923820dcc509a6f75849b", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:name": "1ff799a42f111fee9abc9ed19f4b7185", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:number": "b104b65dc6e64f9d8c41edd2a10b91a0", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:summary": "d9cee37ee90e7a577164dea174b51ee6", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:supporting_organizations": "47daa5a58fad42e5b160a0a8be984cbe", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:title": "1ff799a42f111fee9abc9ed19f4b7185", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:total_contributions": "7d20dae5501e42fdfc737f0a9ded2630", + "build/_data/referendum_supporting/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json:voters_edge_url": "ed957c3e063c8f79616211a1cf626c2e", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:id": "c81e728d9d4c2f636f067f89cc14862c", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:name": "bbb66a4061ba1843327d6f98c69f6f0a", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:number": "c371959532a612e1f507342c429350c8", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:summary": "eacb0889481956309417761c9de60d99", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:title": "bbb66a4061ba1843327d6f98c69f6f0a", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-03-03/official-city-newspaper.json:voters_edge_url": "4cebb3beac226ac8128990d1f103393a", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:contributions_by_region": "fea7ac72bfbccd5464a4317b8c906948", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:contributions_by_type": "af4e5f469fa9d3bba7a5a170185f57dc", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:id": "6f4922f45568161a8cdf4ad2299f6d23", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:name": "decac3ebf8b3a87cfa311b8034f72537", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:number": "0c80fd9a9295a8c4321b5530bfaf1443", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:summary": "ae15043e55b3358a9a5756d0191e298f", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:supporting_organizations": "a240864af3a8e254cb719ea8b1ef731f", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:title": "decac3ebf8b3a87cfa311b8034f72537", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:total_contributions": "d070d359367717e1e2f3d8ca533bd506", + "build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json:voters_edge_url": "4ce90fbfb34f5271046d9892d23100d9", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:id": "1f0e3dad99908345f7439f8ffabdffc4", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:name": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:number": "6f433579d8af9a8b5edf77f66008e9a0", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:summary": "455522304ab1c944bd410d01963bcad3", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:supporting_organizations": "f102771eeea2390f72ab815c7d2b56de", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:title": "174d67334edb3d62e5c711709d775728", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/police-commission.json:voters_edge_url": "5fe1e0a1d637ff03a0365d9fcdac9b23", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:id": "3c59dc048e8850243be8079a5c74d079", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:name": "1ade0136c041da987a7deb91288f6f4e", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:number": "b98f6fdf08280ee12acc96221df8687c", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:summary": "6c2e3478632fa9806d79f28c815e0d6e", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:title": "1ade0136c041da987a7deb91288f6f4e", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2020-11-03/removing-fines-limit.json:voters_edge_url": "974cb116e9c60b6c753321a94c0cb31a", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:contributions_by_region": "f1ff5fdfa14e00b7870ac6cb47578af0", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:contributions_by_type": "a8e8bca00206867aaa3fef2ab492dbdc", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:id": "98f13708210194c475687be6106a3b84", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:name": "2795bba6c0e5c6318b4c369bb010dd36", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:number": "5ad7c96a158df98145590377f0701c32", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:summary": "a88fabb96a290afaaebcc4d5bd534fbf", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:supporting_organizations": "544cf2bf07ae22de3484fe473a53c557", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:title": "2795bba6c0e5c6318b4c369bb010dd36", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:total_contributions": "906566f45a87eabcd8c5f9c2ad86aef7", + "build/_data/referendum_supporting/oakland/2020-11-03/youth-voting.json:voters_edge_url": "28fc5cdb45c670d59823542fa22f3c3e", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:contributions_by_region": "1a78b3b6bec52d6e783649e99a6c9c45", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:contributions_by_type": "e3c79bf10bfb03df7e851c311b648a23", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:id": "a87ff679a2f3e71d9181a67b7542122c", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:name": "75a49508415de3f3b758cfc3f60315c0", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:number": "4d036fd58ceb15b0074e51a919eedb3d", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:summary": "fadd7312d0ede6531f3b8082b559da52", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:supporting_organizations": "5ea3f8ec8b535c0ebeb4285f89493bdf", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:title": "75a49508415de3f3b758cfc3f60315c0", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:total_contributions": "2fdfbd2cb5895fbacda7fb6e5e95d959", + "build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:contributions_by_region": "4b7b6ed08db66b0608d399bd92fec6ed", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:contributions_by_type": "ebe8df8b0aaa93b63ad24268bfd39896", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:id": "c20ad4d76fe97759aa27a0c99bff6710", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:name": "9bcb9df571bdd166b3396d286d7560fe", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:number": "f80628623e82f1aa13b933bd9b39a321", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:summary": "dca5fef59b854f5df3ad76b12f8b3f32", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:supporting_organizations": "97172893c90c879d31c4632659b7229e", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:title": "9bcb9df571bdd166b3396d286d7560fe", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:total_contributions": "9ac50b3c2866867a06c2c9d1e9cb973c", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:id": "c74d97b01eae257e44aa9d5bade97baf", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:name": "f0cc5711611e7f5d4790ac97da0eed90", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:number": "b104b65dc6e64f9d8c41edd2a10b91a0", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:summary": "751a7cf991b3b2a684cdaad37d14f1e1", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:title": "f0cc5711611e7f5d4790ac97da0eed90", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/affordable-rental-housing.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:id": "aab3238922bcc25a6f606eb525ffdc56", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:name": "afad51c9e90322c85ee667b041a62912", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:number": "c371959532a612e1f507342c429350c8", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:summary": "19f8ad4e1ba20d6196e52672e6ae9aad", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:title": "afad51c9e90322c85ee667b041a62912", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:contributions_by_region": "9c21c0bf9f975332271fc6e12bd9915d", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:contributions_by_type": "6f4552397e1b7d8e59e2e5879322ee04", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:id": "6512bd43d9caa6e02c990b0a82652dca", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:name": "13933113391a7682b41d722608c6c991", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:number": "ba5a67fc62aa57dce313f41ff7fc9db4", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:summary": "33cb4f7aa4bae721bbba67db14726632", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:supporting_organizations": "453cdb3b665785a1e3ec330c18b4bf57", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:title": "13933113391a7682b41d722608c6c991", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:total_contributions": "3ee19adfb13179393b6dc251139e9d48", + "build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:id": "c51ce410c124a10e0db5e4b97fc2af39", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:name": "607afcf36c3ea82f9fbcf07b2a281fb5", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:number": "cbad6fdbd6787429beb300decf3a26e3", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:summary": "aefdd596491a870189b2bc777c32e5eb", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:title": "607afcf36c3ea82f9fbcf07b2a281fb5", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/expand-just-cause-eviction-ordinance.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:id": "d3d9446802a44259755d38e6d163e820", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:name": "fc94ddee8ad98a076361f779996ea95f", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:number": "28ad8ec7597298847723ea59272ef8e5", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:summary": "7a1f0364ac071964c8376a0ca0698367", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:title": "fc94ddee8ad98a076361f779996ea95f", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/good-governance-charter-reform.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:contributions_by_region": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:contributions_by_type": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:id": "9bf31c7ff062936a96d3c8bd1f8f2ff3", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:name": "31e303f3de22632a146991919d5a54b9", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:number": "0f9d6cd345c5f169ec107f2ecdecc260", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:summary": "95de36e44e2da1e7bd89b44de1bff137", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:supporting_organizations": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:title": "31e303f3de22632a146991919d5a54b9", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:total_contributions": "d751713988987e9331980363e24189ce", + "build/_data/referendum_supporting/oakland/2022-11-08/non-citizen-voting.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:contributions_by_region": "e293e5dd7e65dfac1eec803bc4405c06", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:contributions_by_type": "2028e810de1de27e28312e9dec0157de", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:id": "70efdf2ec9b086079795c442636b55fb", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:name": "5a6536bc3b5ace3a0a116313b89ca88b", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:number": "838f266367547c028630224986fe1218", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:summary": "18de46848b512db9c4afbab478895562", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:supporting_organizations": "a240864af3a8e254cb719ea8b1ef731f", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:title": "5a6536bc3b5ace3a0a116313b89ca88b", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:total_contributions": "63b787d5e050b0c8aeeb1c94cb43d3b7", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:contributions_by_region": "ed246b4c3d213b3dfd28234f08fc0a1e", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:contributions_by_type": "abdc39b2e1ec8ff924b9ae2c15d2d8d1", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:id": "c9f0f895fb98ab9159f51fd0297e236d", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:name": "f7904339b644c2f122f9ff077906edbb", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:number": "0c80fd9a9295a8c4321b5530bfaf1443", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:summary": "42f469654348f21e229ddde94a74f178", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:supporting_organizations": "50e6f072e441fe6ab1e9c59db918c8bb", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:title": "f7904339b644c2f122f9ff077906edbb", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:total_contributions": "443d9ccdc5aa36541b775d1b3c8c70c8", + "build/_data/referendum_supporting/oakland/2022-11-08/oakland-zoo-animal-care-education-and-improvement.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:contest_type": "59c3821743a2c89881d4e287ed0bc1cf", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:contributions_by_region": "232d51d5b224a6d24c0ea94607fdcd00", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:contributions_by_type": "94cea5b92d6ab6af44a67868274ba603", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:id": "45c48cce2e2d7fbdea1afc51c7c6ad26", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:name": "b570b668dc9f7d96715ebb78499a5d85", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:number": "d3a5591d15f32f71dbf4cdb214cf5d40", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:summary": "f368955532974699ab322925d0208433", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:supporting_organizations": "1d146e927b2fc9fb4d240703c802168a", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:title": "b570b668dc9f7d96715ebb78499a5d85", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:total_contributions": "5c1b8e64ca788bcb839e2851a65b0a2a", + "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", + "build/_data/stats.json:date_processed": "cda05e11d2adbf38316f33f18680c106", + "build/_data/totals.json:berkeley-2018": "b5797ed81b73878816ce4a247f1b1c2e", + "build/_data/totals.json:oakland-2014": "2d2e1ba5b85f10a269262e6d10d029e2", + "build/_data/totals.json:oakland-2016": "41fa6f68a08d6e366df7034b6ef6f219", + "build/_data/totals.json:oakland-2018": "acff2137e602eb0400d81e54f926f0fa", + "build/_data/totals.json:oakland-2020": "7489ec2ee23970386e81dfe775cd5270", + "build/_data/totals.json:oakland-2022": "e269ceb94812e51cb9f81393bf821b1b", + "build/_data/totals.json:oakland-2023": "ffc5693b5798d0bc0cfb009255e4e58d", + "build/_data/totals.json:oakland-2024": "d91e5cb7a74c7556edd53583ebac07df", + "build/_data/totals.json:oakland-june-2018": "cad345c2d29c542c3556a7bafcc12337", + "build/_data/totals.json:oakland-june-2022": "7981581bb67e6583b89af31a367d8378", + "build/_data/totals.json:oakland-march-2020": "c1e1ecfd29437c4902d5b78fe42d4bcb", + "build/_data/totals.json:sf-2016": "b5797ed81b73878816ce4a247f1b1c2e", + "build/_data/totals.json:sf-2018": "b5797ed81b73878816ce4a247f1b1c2e", + "build/_data/totals.json:sf-june-2018": "b5797ed81b73878816ce4a247f1b1c2e" +} \ No newline at end of file