From 7e7e29be7fc801b3eae65062a6bf14e8fdf52fce Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Wed, 8 Jan 2025 02:47:51 -0500 Subject: [PATCH 01/11] Experimental implementation of GitHub issue 991: Feature Request: Add Standardized Unique Identifiers for Cast Vote Records https://github.com/BrightSpots/rcv/issues/911 --- .../java/network/brightspots/rcv/CastVoteRecord.java | 11 ++++++++++- .../java/network/brightspots/rcv/OutputWriter.java | 4 +++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/CastVoteRecord.java b/src/main/java/network/brightspots/rcv/CastVoteRecord.java index 30dbed6c..43a981fb 100644 --- a/src/main/java/network/brightspots/rcv/CastVoteRecord.java +++ b/src/main/java/network/brightspots/rcv/CastVoteRecord.java @@ -25,9 +25,12 @@ import java.util.List; import java.util.Map; import java.util.Map.Entry; +import java.util.UUID; import javafx.util.Pair; class CastVoteRecord { + // unique ID (owned by RCTab) + private final String rctabUuid; // computed unique ID for this CVR (source file + line number) private final String computedId; // supplied unique ID for this CVR @@ -83,6 +86,7 @@ class CastVoteRecord { String precinctPortion, boolean usesLastAllowedRanking, List> rankings) { + this.rctabUuid = UUID.randomUUID().toString(); this.contestId = contestId; this.tabulatorId = tabulatorId; this.batchId = batchId; @@ -128,6 +132,10 @@ boolean doesUseLastAllowedRanking() { return usesLastAllowedRanking; } + public String getRctabUuid() { + return rctabUuid; + } + String getId() { return suppliedId != null ? suppliedId : computedId; } @@ -143,8 +151,9 @@ void logRoundOutcome( } else { logStringBuilder.append(suppliedId); } + logStringBuilder.append(" [RCTab UUID] ").append(rctabUuid); if (outcomeType == VoteOutcomeType.IGNORED) { - logStringBuilder.append(" [was ignored] "); + logStringBuilder.append(" [ was ignored] "); } else if (outcomeType == VoteOutcomeType.EXHAUSTED) { logStringBuilder.append(" [became inactive] "); } else { diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index 46676f16..b6aea019 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -696,8 +696,9 @@ String writeRcTabCvrCsv( CSVFormat format = CSVFormat.DEFAULT.builder().setNullString("").build(); csvPrinter = new CSVPrinter(writer, format); // print header: - // ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, + // RCTab UUID, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, // rank 2 selection, ... rank maxRanks selection + csvPrinter.print("RCTab UUID"); csvPrinter.print("Source Filepath"); csvPrinter.print("CVR Provider"); csvPrinter.print("Contest Id"); @@ -737,6 +738,7 @@ String writeRcTabCvrCsv( } CastVoteRecord castVoteRecord = castVoteRecords.get(i); + csvPrinter.print(castVoteRecord.getRctabUuid()); csvPrinter.print(currentSourceData.source.getFilePath()); csvPrinter.print(currentSourceData.source.getProvider()); csvPrinter.print(castVoteRecord.getContestId()); From 85ecda82db9c35b729de811d4cb9687f3b58db71 Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Wed, 8 Jan 2025 19:10:16 -0500 Subject: [PATCH 02/11] refactor: standardize CVR ID generation and usage Replace UUID-based identification with a more consistent ID system that uses the same identifier across audit logs and RCTab CVR output. The ID is primarily derived from the computedId (tabulator-batch-record) with fallback to suppliedId when computedId is unavailable. Unlike UUIDs which change between tabulations, this approach ensures the same ballot maintains the same identifier across multiple tabulations, making it easier to track specific ballots across different runs. Changes: - Remove UUID generation for CVR identification - Add getPrimaryId() method to centralize ID logic - Update audit log and RCTab CVR to use the same ID format - Change ID delimiter from pipe to dash for better readability - Add TODO to review legacy getId() usage Note: This change ensures that CVR IDs are consistent between audit logs, RCTab CVR output, and repeated tabulations, making it easier to track individual ballots across different output formats and multiple runs. --- .../network/brightspots/rcv/CastVoteRecord.java | 17 +++++------------ .../brightspots/rcv/DominionCvrReader.java | 2 +- .../network/brightspots/rcv/OutputWriter.java | 4 ++-- 3 files changed, 8 insertions(+), 15 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/CastVoteRecord.java b/src/main/java/network/brightspots/rcv/CastVoteRecord.java index 43a981fb..45355e3e 100644 --- a/src/main/java/network/brightspots/rcv/CastVoteRecord.java +++ b/src/main/java/network/brightspots/rcv/CastVoteRecord.java @@ -25,12 +25,9 @@ import java.util.List; import java.util.Map; import java.util.Map.Entry; -import java.util.UUID; import javafx.util.Pair; class CastVoteRecord { - // unique ID (owned by RCTab) - private final String rctabUuid; // computed unique ID for this CVR (source file + line number) private final String computedId; // supplied unique ID for this CVR @@ -86,7 +83,6 @@ class CastVoteRecord { String precinctPortion, boolean usesLastAllowedRanking, List> rankings) { - this.rctabUuid = UUID.randomUUID().toString(); this.contestId = contestId; this.tabulatorId = tabulatorId; this.batchId = batchId; @@ -132,10 +128,12 @@ boolean doesUseLastAllowedRanking() { return usesLastAllowedRanking; } - public String getRctabUuid() { - return rctabUuid; + // This represents the canonical ID used for audit logs and RCTab CVR + String getPrimaryId() { + return !isNullOrBlank(computedId) ? computedId : suppliedId; } + // TODO: Before merging PR determine if we still need getId & the Record ID it prints to the RCTab CVR String getId() { return suppliedId != null ? suppliedId : computedId; } @@ -146,12 +144,7 @@ void logRoundOutcome( StringBuilder logStringBuilder = new StringBuilder(); logStringBuilder.append("[Round] ").append(round).append(" [CVR] "); - if (!isNullOrBlank(computedId)) { - logStringBuilder.append(computedId); - } else { - logStringBuilder.append(suppliedId); - } - logStringBuilder.append(" [RCTab UUID] ").append(rctabUuid); + logStringBuilder.append(getPrimaryId()); if (outcomeType == VoteOutcomeType.IGNORED) { logStringBuilder.append(" [ was ignored] "); } else if (outcomeType == VoteOutcomeType.EXHAUSTED) { diff --git a/src/main/java/network/brightspots/rcv/DominionCvrReader.java b/src/main/java/network/brightspots/rcv/DominionCvrReader.java index 6ed6cf86..d608e6e4 100644 --- a/src/main/java/network/brightspots/rcv/DominionCvrReader.java +++ b/src/main/java/network/brightspots/rcv/DominionCvrReader.java @@ -291,7 +291,7 @@ private int parseCvrFile( String computedId = Stream.of(tabulatorId, batchId, Integer.toString(recordId)) .filter(s -> s != null && !s.isBlank()) - .collect(Collectors.joining("|")); + .collect(Collectors.joining("-")); // using a dash since this is an Id // filter out records which are not current and replace them with adjudicated ones HashMap adjudicatedData = (HashMap) session.get("Original"); diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index b6aea019..b8626dd4 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -698,7 +698,7 @@ String writeRcTabCvrCsv( // print header: // RCTab UUID, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, // rank 2 selection, ... rank maxRanks selection - csvPrinter.print("RCTab UUID"); + csvPrinter.print("RCTab CVR Id"); csvPrinter.print("Source Filepath"); csvPrinter.print("CVR Provider"); csvPrinter.print("Contest Id"); @@ -738,7 +738,7 @@ String writeRcTabCvrCsv( } CastVoteRecord castVoteRecord = castVoteRecords.get(i); - csvPrinter.print(castVoteRecord.getRctabUuid()); + csvPrinter.print(castVoteRecord.getPrimaryId()); csvPrinter.print(currentSourceData.source.getFilePath()); csvPrinter.print(currentSourceData.source.getProvider()); csvPrinter.print(castVoteRecord.getContestId()); From 3dd2f9074c235f49915c1227e8a0e58393794d40 Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Wed, 8 Jan 2025 19:52:22 -0500 Subject: [PATCH 03/11] Removed depricated reference to UUID. --- src/main/java/network/brightspots/rcv/OutputWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index b8626dd4..d000ffb0 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -696,7 +696,7 @@ String writeRcTabCvrCsv( CSVFormat format = CSVFormat.DEFAULT.builder().setNullString("").build(); csvPrinter = new CSVPrinter(writer, format); // print header: - // RCTab UUID, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, + // RCTab CVR Id, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, // rank 2 selection, ... rank maxRanks selection csvPrinter.print("RCTab CVR Id"); csvPrinter.print("Source Filepath"); From d967d53c7cb8a1b336fc6b7224be151bd639d33d Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Wed, 15 Jan 2025 10:32:26 -0500 Subject: [PATCH 04/11] Fixed all tests except "Test Convert to rctab_cvr works for Dominion" --- .../brightspots/rcv/CastVoteRecord.java | 3 +- .../network/brightspots/rcv/OutputWriter.java | 4 +- .../conversions_from_cdf_expected.csv | 62 +- .../conversions_from_dominion_expected.csv | 2092 ++++++++--------- .../conversions_from_ess_expected.csv | 22 +- 5 files changed, 1092 insertions(+), 1091 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/CastVoteRecord.java b/src/main/java/network/brightspots/rcv/CastVoteRecord.java index 45355e3e..6f592fb1 100644 --- a/src/main/java/network/brightspots/rcv/CastVoteRecord.java +++ b/src/main/java/network/brightspots/rcv/CastVoteRecord.java @@ -133,7 +133,8 @@ String getPrimaryId() { return !isNullOrBlank(computedId) ? computedId : suppliedId; } - // TODO: Before merging PR determine if we still need getId & the Record ID it prints to the RCTab CVR + // TODO: Before merging PR determine if we still need getId & + // the Record ID it prints to the RCTab CVR String getId() { return suppliedId != null ? suppliedId : computedId; } diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index d000ffb0..52ee6dcc 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -696,8 +696,8 @@ String writeRcTabCvrCsv( CSVFormat format = CSVFormat.DEFAULT.builder().setNullString("").build(); csvPrinter = new CSVPrinter(writer, format); // print header: - // RCTab CVR Id, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, - // rank 2 selection, ... rank maxRanks selection + // RCTab CVR Id, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, + // rank 1 selection, rank 2 selection, ... rank maxRanks selection csvPrinter.print("RCTab CVR Id"); csvPrinter.print("Source Filepath"); csvPrinter.print("CVR Provider"); diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv index 5a03b268..92cef682 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv @@ -1,31 +1,31 @@ -Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote -../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote -../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4 +cdf_json_file1_cvr.json(1),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote +cdf_json_file1_cvr.json(2),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 +cdf_json_file1_cvr.json(3),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file1_cvr.json(4),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +cdf_json_file1_cvr.json(5),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file1_cvr.json(6),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +cdf_json_file1_cvr.json(7),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 +cdf_json_file1_cvr.json(8),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote +cdf_json_file1_cvr.json(9),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file1_cvr.json(10),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +cdf_json_file1_cvr.json(11),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file1_cvr.json(12),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 +cdf_json_file1_cvr.json(13),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote +cdf_json_file1_cvr.json(14),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote +cdf_json_file1_cvr.json(15),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +cdf_json_file2_cvr.json(1),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote +cdf_json_file2_cvr.json(2),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 +cdf_json_file2_cvr.json(3),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file2_cvr.json(4),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +cdf_json_file2_cvr.json(5),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file2_cvr.json(6),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +cdf_json_file2_cvr.json(7),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 +cdf_json_file2_cvr.json(8),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote +cdf_json_file2_cvr.json(9),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file2_cvr.json(10),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +cdf_json_file2_cvr.json(11),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +cdf_json_file2_cvr.json(12),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 +cdf_json_file2_cvr.json(13),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote +cdf_json_file2_cvr.json(14),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote +cdf_json_file2_cvr.json(15),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv index 3acdbe0d..e3ec3e75 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv @@ -1,1046 +1,1046 @@ -Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4,Rank 5 -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,1,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,2,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,3,,Precinct 1,12,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,6,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,8,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,9,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,10,,Precinct 1,Tom Steyer,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,12,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,13,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,15,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,17,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,18,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,1,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,3,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,4,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,5,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,9,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,10,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,12,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,13,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,18,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,19,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,20,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,1,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,3,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,4,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,6,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,7,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,8,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,12,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,15,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,20,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,1,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,2,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,4,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,5,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,6,,Precinct 1,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,7,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,9,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,10,,Precinct 1,Bernie Sanders,12,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,11,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,13,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,14,,Precinct 1,Tom Steyer,Joseph R. Biden,Pete Buttigieg,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,15,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,17,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,18,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,1,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,3,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,5,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,6,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,7,,Precinct 1,Joseph R. Biden,Elizabeth Warren,12,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,8,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,"Joseph R. Biden -Tom Steyer -Bernie Sanders -Tulsi Gabbard -Pete Buttigieg -12" -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,9,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,12,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,13,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,14,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,15,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,17,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,18,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,19,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,20,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,1,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,2,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,6,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,7,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,8,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,10,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,14,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,15,,Precinct 1,Pete Buttigieg,12,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,17,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,19,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,1,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,5,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,6,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,8,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Tom Steyer,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,10,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,11,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,13,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,14,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,15,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tom Steyer,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,18,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,19,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,20,,Precinct 1,12,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,2,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,3,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,4,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,5,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,6,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,7,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,8,,Precinct 1,undervote,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,9,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,10,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,19,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,20,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,1,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,3,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,6,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,9,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,10,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,11,,Precinct 1,Tulsi Gabbard,12,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,13,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,16,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,18,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,20,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,1,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,2,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,3,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,4,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,5,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,7,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,9,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,11,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,12,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Tom Steyer,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,13,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,14,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,15,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,16,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,"Tulsi Gabbard -Michael R. Bloomberg -Pete Buttigieg",Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,18,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,1,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,2,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,3,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,4,,Precinct 1,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,5,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,6,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,7,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,9,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,11,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,13,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,14,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,15,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,16,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,17,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,19,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,1,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,3,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,4,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,6,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,8,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,9,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,11,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,13,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,14,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,15,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,16,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,17,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,18,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,19,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,2,,Precinct 1,Elizabeth Warren,12,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,4,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,5,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,6,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,7,,Precinct 1,12,Bernie Sanders,Tom Steyer,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,8,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,9,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,10,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,12,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,13,,Precinct 1,12,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,16,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,18,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,19,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,1,,Precinct 1,12,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,2,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,4,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,5,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,8,,Precinct 1,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,9,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,10,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,12,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,12,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,1,,Precinct 1,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,2,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,3,,Precinct 1,12,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,4,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,5,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,12,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,7,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,8,,Precinct 1,Tom Steyer,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,12,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,19,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,1,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,4,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,5,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,6,,Precinct 1,Tulsi Gabbard,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,7,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,8,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,9,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,10,,Precinct 1,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,13,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,14,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,15,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,17,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,19,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,20,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,1,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,2,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,3,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,4,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,5,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,10,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,19,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,20,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,1,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,3,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,4,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,5,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,6,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,8,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,9,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,11,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,14,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,15,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,16,,Precinct 1,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,19,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,20,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,1,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,6,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,7,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,8,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,9,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,12,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,14,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,16,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,17,,Precinct 1,Amy Klobuchar,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,18,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,1,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,2,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,"Joseph R. Biden -Tom Steyer -Bernie Sanders -Amy Klobuchar -Elizabeth Warren -12" -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,4,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,5,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,8,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,12,,Precinct 1,12,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,13,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,14,,Precinct 1,12,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,16,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,18,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,20,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,1,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,2,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,3,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,4,,Precinct 1,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,5,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,8,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,13,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,14,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,18,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,19,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,1,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,3,,Precinct 1,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,4,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,8,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,9,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,11,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,14,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,16,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,18,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,19,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,20,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,1,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,2,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,3,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,4,,Precinct 1,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,6,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,7,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,8,,Precinct 1,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,10,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,12,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,14,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,16,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,17,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,19,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,20,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,1,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,4,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,5,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,6,,Precinct 1,12,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,8,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,10,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,11,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,13,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,15,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,16,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,18,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,19,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,20,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,1,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,2,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,3,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,7,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,9,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,"Joseph R. Biden -Amy Klobuchar -Tulsi Gabbard -Elizabeth Warren -Michael R. Bloomberg -Pete Buttigieg -12" -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,12,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,13,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,15,,Precinct 1,12,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,17,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,18,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,19,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,1,,Precinct 1,Tulsi Gabbard,Bernie Sanders,12,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,2,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,5,,Precinct 1,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,6,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,7,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,10,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,11,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,12,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,13,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Tom Steyer,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,16,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,18,,Precinct 1,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,19,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,20,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,1,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,2,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,3,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,4,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,5,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,6,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,7,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,8,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,9,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,12,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,17,,Precinct 1,Joseph R. Biden,Bernie Sanders,"Michael R. Bloomberg -12",Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,18,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,19,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,20,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,4,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,12,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,16,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,17,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,19,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,1,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,4,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,6,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,10,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,13,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,14,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Pete Buttigieg,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,18,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,19,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,12,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,1,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,4,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,5,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,6,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,7,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,12,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,8,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,10,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,11,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,15,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,17,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,12,Bernie Sanders,"Joseph R. Biden -Tom Steyer -Bernie Sanders -Tulsi Gabbard -Elizabeth Warren -Michael R. Bloomberg -Pete Buttigieg" -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,19,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,20,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,1,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,2,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,5,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,6,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,7,,Precinct 1,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,8,,Precinct 1,12,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,9,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,undervote,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,11,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,12,,Precinct 1,12,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,14,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,15,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,16,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,18,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,19,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,2,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,3,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,4,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,5,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,6,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,7,,Precinct 1,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,Amy Klobuchar,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,9,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,12,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,14,,Precinct 1,Joseph R. Biden,Joseph R. Biden,Pete Buttigieg,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,"Amy Klobuchar -Pete Buttigieg -12",Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,20,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,2,,Precinct 1,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,3,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,5,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,6,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,7,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,8,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,9,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,12,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,13,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,15,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,16,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,17,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,18,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,20,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,1,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,2,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,3,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,4,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,7,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,8,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,9,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,10,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,11,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,13,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,14,,Precinct 1,Pete Buttigieg,12,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,15,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,17,,Precinct 1,Tom Steyer,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,18,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,4,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,5,,Precinct 1,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,6,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,8,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,13,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,"Joseph R. Biden -Tom Steyer -Bernie Sanders -Amy Klobuchar -Tulsi Gabbard -Michael R. Bloomberg",Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,15,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,16,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,18,,Precinct 1,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,20,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,1,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,2,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,3,,Precinct 1,12,Tom Steyer,Bernie Sanders,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,4,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,5,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,6,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,8,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,9,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,10,,Precinct 1,Tom Steyer,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,14,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,15,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,18,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,19,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,12,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,1,,Precinct 1,12,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,2,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,4,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,5,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,7,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,8,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,10,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,11,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,18,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,19,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,20,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,2,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,3,,Precinct 1,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,4,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,6,,Precinct 1,"Joseph R. Biden -Tom Steyer -Bernie Sanders -Amy Klobuchar -Tulsi Gabbard -Elizabeth Warren -Michael R. Bloomberg -Pete Buttigieg",12,Elizabeth Warren,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,7,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,10,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,12,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,13,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,14,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,15,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,16,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,17,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,18,,Precinct 1,12,Tom Steyer,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,19,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,20,,Precinct 1,12,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,1,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,2,,Precinct 1,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,3,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,5,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,6,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,7,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,8,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,9,,Precinct 1,Tom Steyer,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,11,,Precinct 1,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,12,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,14,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,15,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,16,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,17,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,18,,Precinct 1,Bernie Sanders,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,19,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,20,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,3,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,4,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,5,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,6,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,7,,Precinct 1,Tulsi Gabbard,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,10,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,12,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,13,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,14,,Precinct 1,Joseph R. Biden,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,17,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,19,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,20,,Precinct 1,Tulsi Gabbard,Tom Steyer,12,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,1,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,2,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,4,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,6,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,7,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,10,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,12,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,16,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,19,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,20,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,1,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,5,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,7,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,8,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,9,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,13,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,14,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Tulsi Gabbard,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,19,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,1,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,2,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,3,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,5,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,6,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,8,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,9,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,11,,Precinct 1,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,14,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,15,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,16,,Precinct 1,12,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,17,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,20,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,1,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,5,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,7,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,10,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,12,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,14,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,"Bernie Sanders -Amy Klobuchar",Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,17,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,1,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,3,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,4,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,6,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,8,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,9,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,10,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,11,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,13,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,14,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,18,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,20,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,1,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,2,,Precinct 1,Tom Steyer,undervote,Elizabeth Warren,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,3,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,4,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,6,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,9,,Precinct 1,Bernie Sanders,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,11,,Precinct 1,12,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,13,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,14,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,15,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,17,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,12,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,19,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,20,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,3,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,5,,Precinct 1,"Joseph R. Biden -Amy Klobuchar -Tulsi Gabbard -Michael R. Bloomberg -Pete Buttigieg -12",Tom Steyer,Elizabeth Warren,Bernie Sanders,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,6,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,7,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,8,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,9,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,10,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,11,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,12,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,13,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,15,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,16,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,18,,Precinct 1,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,12,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,3,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,4,,Precinct 1,12,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,5,,Precinct 1,12,Michael R. Bloomberg,Tulsi Gabbard,Tom Steyer,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,6,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,8,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,9,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,11,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,12,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,13,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,14,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,17,,Precinct 1,Bernie Sanders,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Tom Steyer,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,1,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Bernie Sanders,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,2,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,3,,Precinct 1,Bernie Sanders,Amy Klobuchar,12,Michael R. Bloomberg,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,6,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,8,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,9,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,10,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,11,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,12,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,14,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,15,,Precinct 1,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,17,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,18,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,19,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,20,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,1,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,2,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,3,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,5,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,6,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,7,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,8,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,10,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Bernie Sanders -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,11,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,13,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,14,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,17,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12 -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,19,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg -../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,20,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Amy Klobuchar,Bernie Sanders +RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4,Rank 5 +42-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,1,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tulsi Gabbard +42-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,2,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +42-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,3,,Precinct 1,12,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg +42-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12,Elizabeth Warren +42-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote +42-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,6,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,12 +42-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +42-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,8,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg +42-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,9,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg +42-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,10,,Precinct 1,Tom Steyer,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg +42-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +42-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,12,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 +42-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,13,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard +42-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Tulsi Gabbard +42-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,15,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg +42-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 +42-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,17,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,12,Pete Buttigieg +42-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,18,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 +42-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren +42-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +34-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,1,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg +34-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote +34-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,3,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg +34-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,4,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard +34-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,5,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden +34-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote +34-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer +34-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Amy Klobuchar,Michael R. Bloomberg +34-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,9,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 +34-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,10,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Tom Steyer +34-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Elizabeth Warren +34-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,12,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +34-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,13,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,12,Pete Buttigieg +34-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +34-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg +34-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote +34-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg +34-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,18,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg +34-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,19,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren +34-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,20,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders +50-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,1,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer +50-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg +50-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,3,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +50-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,4,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg +50-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Joseph R. Biden +50-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,6,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +50-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,7,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg +50-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,8,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar +50-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +50-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren +50-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12,Joseph R. Biden +50-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,12,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren +50-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden +50-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote +50-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,15,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer +50-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders +50-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar +50-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +50-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Michael R. Bloomberg,Tulsi Gabbard +50-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,20,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +18-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,1,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 +18-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,2,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Pete Buttigieg +18-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden +18-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,4,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Tom Steyer,Joseph R. Biden +18-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,5,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard +18-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,6,,Precinct 1,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden +18-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,7,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg +18-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard +18-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,9,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +18-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,10,,Precinct 1,Bernie Sanders,12,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer +18-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,11,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Tom Steyer +18-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12,Elizabeth Warren +18-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,13,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +18-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,14,,Precinct 1,Tom Steyer,Joseph R. Biden,Pete Buttigieg,12,Tulsi Gabbard +18-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,15,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders +18-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +18-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,17,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 +18-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,18,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Amy Klobuchar +18-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg,Tom Steyer +18-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg +26-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,1,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Pete Buttigieg +26-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,12 +26-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,3,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard +26-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,12 +26-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,5,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard +26-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,6,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Bernie Sanders +26-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,7,,Precinct 1,Joseph R. Biden,Elizabeth Warren,12,Joseph R. Biden,Bernie Sanders +26-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,8,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,"Joseph R. Biden +--,Tom Steyer +--,Bernie Sanders +--,Tulsi Gabbard +--,Pete Buttigieg +--,12" +26-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,9,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar +26-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,12,Bernie Sanders +26-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar +26-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,12,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12 +26-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,13,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard +26-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,14,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +26-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,15,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +26-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders +26-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,17,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +26-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,18,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Amy Klobuchar +26-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,19,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +26-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,20,,Precinct 1,undervote,undervote,undervote,undervote,undervote +24-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,1,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tom Steyer,Tulsi Gabbard +24-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,2,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,12 +24-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg +24-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard +24-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,12 +24-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,6,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12 +24-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,7,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Tom Steyer +24-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,8,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,12 +24-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Tom Steyer +24-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,10,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Pete Buttigieg +24-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard +24-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,12,Joseph R. Biden +24-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,12 +24-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,14,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Amy Klobuchar +24-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,15,,Precinct 1,Pete Buttigieg,12,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard +24-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard +24-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,17,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Bernie Sanders +24-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +24-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,19,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden +24-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +49-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,1,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,12 +49-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +49-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer +49-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +49-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,5,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard +49-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,6,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +49-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren +49-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,8,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Tom Steyer,Bernie Sanders +49-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +49-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,10,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg +49-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,11,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard +49-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 +49-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,13,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +49-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,14,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg +49-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,15,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard +49-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12 +49-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tom Steyer,Pete Buttigieg,12 +49-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,18,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard +49-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,19,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar +49-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,20,,Precinct 1,12,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden +25-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg,Elizabeth Warren +25-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,2,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,12,Bernie Sanders +25-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,3,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Elizabeth Warren +25-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,4,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard,12 +25-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,5,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg +25-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,6,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden,Tom Steyer +25-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,7,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar,Michael R. Bloomberg +25-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,8,,Precinct 1,undervote,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren +25-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,9,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden +25-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,10,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +25-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Michael R. Bloomberg +25-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Pete Buttigieg +25-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg +25-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders +25-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote +25-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg +25-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard +25-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar +25-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,19,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +25-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,20,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Joseph R. Biden +33-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,1,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard +33-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg +33-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,3,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Tom Steyer,Pete Buttigieg +33-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +33-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders +33-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,6,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tom Steyer +33-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders +33-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg +33-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,9,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12 +33-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,10,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg +33-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,11,,Precinct 1,Tulsi Gabbard,12,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden +33-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar +33-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,13,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders +33-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Bernie Sanders +33-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Tom Steyer,Amy Klobuchar +33-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,16,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg +33-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren +33-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,18,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard +33-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12 +33-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,20,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden +32-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,1,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden +32-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,2,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg +32-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,3,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +32-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,4,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar +32-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,5,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 +32-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg +32-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,7,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders +32-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,12 +32-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,9,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar +32-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 +32-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,11,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +32-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,12,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Tom Steyer,Bernie Sanders +32-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,13,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg +32-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,14,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar +32-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,15,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Elizabeth Warren +32-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,16,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden +32-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,"Tulsi Gabbard +--,Michael R. Bloomberg +--,Pete Buttigieg",Joseph R. Biden,Elizabeth Warren +32-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,18,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar +32-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard +32-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard +41-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,1,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard +41-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,2,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 +41-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,3,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Joseph R. Biden +41-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,4,,Precinct 1,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders +41-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,5,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 +41-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,6,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg +41-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,7,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg +41-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +41-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,9,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +41-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer +41-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,11,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard +41-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard +41-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,13,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +41-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,14,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +41-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,15,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,12,Amy Klobuchar +41-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,16,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tom Steyer +41-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,17,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Joseph R. Biden +41-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders +41-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,19,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Pete Buttigieg +41-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Michael R. Bloomberg +23-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,1,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg +23-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders +23-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,3,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,12 +23-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,4,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard +23-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote +23-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,6,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +23-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +23-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,8,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +23-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,9,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Michael R. Bloomberg +23-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +23-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,11,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg +23-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer +23-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,13,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,12 +23-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,14,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden +23-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,15,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Elizabeth Warren +23-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,16,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders +23-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,17,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,12 +23-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,18,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg +23-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,19,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Bernie Sanders,Michael R. Bloomberg +23-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg +31-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden +31-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,2,,Precinct 1,Elizabeth Warren,12,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar +31-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders +31-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,4,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,12,Amy Klobuchar +31-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,5,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg +31-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,6,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +31-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,7,,Precinct 1,12,Bernie Sanders,Tom Steyer,Joseph R. Biden,Amy Klobuchar +31-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,8,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Bernie Sanders,Elizabeth Warren +31-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,9,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg +31-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,10,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg +31-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +31-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,12,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Pete Buttigieg +31-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,13,,Precinct 1,12,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg +31-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Tulsi Gabbard +31-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Tom Steyer +31-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,16,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren +31-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12 +31-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,18,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer +31-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,19,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Bernie Sanders +31-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,12 +22-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,1,,Precinct 1,12,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer +22-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,2,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12,Joseph R. Biden +22-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Tom Steyer +22-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,4,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +22-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,5,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar +22-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote +22-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tom Steyer,Amy Klobuchar +22-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,8,,Precinct 1,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12,Joseph R. Biden +22-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,9,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +22-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,10,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar +22-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders +22-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden +22-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Tulsi Gabbard +22-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders +22-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tom Steyer +22-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,12,Elizabeth Warren,Tom Steyer +22-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard +22-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +22-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,12,Bernie Sanders,Joseph R. Biden +22-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg +48-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,1,,Precinct 1,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard +48-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,2,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg +48-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,3,,Precinct 1,12,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Tom Steyer +48-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,4,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg +48-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,5,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,12,Elizabeth Warren,Tom Steyer +48-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12 +48-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,7,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg +48-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,8,,Precinct 1,Tom Steyer,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg +48-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Tom Steyer +48-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden +48-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +48-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,12,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard +48-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +48-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg +48-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Bernie Sanders,Tulsi Gabbard +48-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,12,Joseph R. Biden +48-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg +48-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar +48-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,19,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Elizabeth Warren,Amy Klobuchar +48-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar +21-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,1,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg +21-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Elizabeth Warren +21-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +21-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,4,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar +21-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,5,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +21-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,6,,Precinct 1,Tulsi Gabbard,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg +21-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,7,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Tom Steyer,Michael R. Bloomberg +21-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,8,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg +21-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,9,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Elizabeth Warren +21-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,10,,Precinct 1,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar +21-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Joseph R. Biden +21-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Pete Buttigieg,Tulsi Gabbard +21-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,13,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Joseph R. Biden +21-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,14,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +21-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,15,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12,Pete Buttigieg +21-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer,12 +21-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,17,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +21-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden,Tulsi Gabbard +21-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,19,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Joseph R. Biden +21-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,20,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders +47-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,1,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar +47-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,2,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,12 +47-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,3,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg +47-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,4,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard +47-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,5,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,12,Amy Klobuchar +47-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Pete Buttigieg +47-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +47-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg +47-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Bernie Sanders +47-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,10,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer,Tulsi Gabbard +47-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +47-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,12 +47-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +47-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer +47-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +47-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Joseph R. Biden +47-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,12 +47-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard +47-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,19,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,12,Tom Steyer +47-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,20,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Joseph R. Biden,Tom Steyer +17-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,1,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg +17-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Tom Steyer +17-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,3,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12,Bernie Sanders +17-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,4,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden +17-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,5,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer +17-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,6,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12,Joseph R. Biden +17-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +17-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,8,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Amy Klobuchar +17-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,9,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,12,Tom Steyer +17-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,12,Tulsi Gabbard +17-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,11,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +17-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer,12,Amy Klobuchar +17-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg +17-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,14,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden +17-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,15,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +17-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,16,,Precinct 1,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren +17-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,12,Pete Buttigieg +17-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders +17-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,19,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar +17-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,20,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12 +40-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,1,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard +40-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 +40-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden +40-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer +40-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer +40-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,6,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard +40-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,7,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg +40-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,8,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Amy Klobuchar +40-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,9,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard +40-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +40-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,12,Bernie Sanders +40-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,12,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,12 +40-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +40-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,14,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden +40-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Tom Steyer,Pete Buttigieg +40-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,16,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar +40-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,17,,Precinct 1,Amy Klobuchar,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard +40-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,18,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders +40-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,12,Tulsi Gabbard +40-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Michael R. Bloomberg,Bernie Sanders +16-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,1,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Amy Klobuchar +16-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,2,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg +16-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,"Joseph R. Biden +--,Tom Steyer +--,Bernie Sanders +--,Amy Klobuchar +--,Elizabeth Warren +--,12" +16-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,4,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren +16-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,5,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg +16-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Amy Klobuchar +16-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,12 +16-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,8,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Bernie Sanders +16-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Amy Klobuchar,Pete Buttigieg +16-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12 +16-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote +16-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,12,,Precinct 1,12,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg +16-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,13,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg,Elizabeth Warren +16-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,14,,Precinct 1,12,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Elizabeth Warren +16-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Michael R. Bloomberg,Amy Klobuchar +16-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,16,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Elizabeth Warren +16-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Tulsi Gabbard +16-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,18,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg +16-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard +16-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,20,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +39-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,1,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Tom Steyer +39-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,2,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Bernie Sanders +39-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,3,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +39-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,4,,Precinct 1,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar +39-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,5,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Bernie Sanders,Elizabeth Warren +39-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg +39-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Tom Steyer +39-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,8,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Bernie Sanders,Michael R. Bloomberg +39-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders +39-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders,Pete Buttigieg +39-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,12,Amy Klobuchar +39-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote +39-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,13,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer +39-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,14,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren +39-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard +39-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,12,Bernie Sanders +39-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Pete Buttigieg +39-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,18,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg +39-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,19,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Bernie Sanders +39-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren +38-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,1,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Bernie Sanders +38-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard +38-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,3,,Precinct 1,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden,Elizabeth Warren +38-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,4,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Bernie Sanders,Michael R. Bloomberg +38-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard +38-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +38-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Michael R. Bloomberg,Tom Steyer +38-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,8,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Michael R. Bloomberg +38-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,9,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders +38-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +38-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,11,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren +38-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar +38-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg +38-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,14,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Elizabeth Warren,Joseph R. Biden +38-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar +38-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,16,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer +38-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,12 +38-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,18,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +38-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,19,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +38-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,20,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard +20-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,1,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden +20-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,2,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +20-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,3,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders +20-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,4,,Precinct 1,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +20-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer +20-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,6,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12 +20-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,7,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,12,Tom Steyer +20-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,8,,Precinct 1,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Joseph R. Biden +20-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard +20-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,10,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg +20-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Elizabeth Warren +20-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,12,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Tom Steyer,Elizabeth Warren +20-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren +20-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,14,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg +20-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg +20-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,16,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12,Tom Steyer +20-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,17,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Pete Buttigieg +20-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar +20-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,19,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg +20-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,20,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar +37-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,1,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden +37-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,12,Michael R. Bloomberg +37-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +37-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,4,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Elizabeth Warren +37-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,5,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12 +37-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,6,,Precinct 1,12,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar +37-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer +37-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,8,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +37-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote +37-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,10,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,12 +37-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,11,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer +37-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,12 +37-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,13,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Michael R. Bloomberg,Joseph R. Biden +37-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Bernie Sanders +37-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,15,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg +37-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,16,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +37-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,12,Amy Klobuchar +37-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,18,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +37-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,19,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,12 +37-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,20,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders +15-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,1,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar +15-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,2,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +15-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,3,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg +15-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +15-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg +15-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +15-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,7,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar +15-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,12,Elizabeth Warren +15-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,9,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,"Joseph R. Biden +--,Amy Klobuchar +--,Tulsi Gabbard +--,Elizabeth Warren +--,Michael R. Bloomberg +--,Pete Buttigieg +--,12" +15-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +15-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote +15-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,12,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard +15-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,13,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren +15-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Joseph R. Biden +15-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,15,,Precinct 1,12,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Bernie Sanders +15-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg +15-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,17,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg +15-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,18,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren +15-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,19,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +15-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden +30-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,1,,Precinct 1,Tulsi Gabbard,Bernie Sanders,12,Joseph R. Biden,Michael R. Bloomberg +30-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,2,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard +30-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Tom Steyer +30-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +30-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,5,,Precinct 1,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 +30-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,6,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders +30-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,7,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Joseph R. Biden,Amy Klobuchar +30-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Elizabeth Warren +30-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer +30-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,10,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Amy Klobuchar +30-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,11,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,12,Bernie Sanders +30-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,12,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden +30-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,13,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Tom Steyer,Bernie Sanders +30-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +30-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +30-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,16,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar +30-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar +30-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,18,,Precinct 1,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren +30-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,19,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer +30-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,20,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,12 +36-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,1,,Precinct 1,undervote,undervote,undervote,undervote,undervote +36-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,2,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Bernie Sanders,Michael R. Bloomberg +36-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,3,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar +36-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,4,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg +36-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,5,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg +36-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,6,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +36-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,7,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12,Amy Klobuchar +36-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,8,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12,Bernie Sanders +36-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,9,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg +36-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden +36-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote +36-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,12,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar +36-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +36-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,12,Tom Steyer +36-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote +36-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote +36-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,17,,Precinct 1,Joseph R. Biden,Bernie Sanders,"Michael R. Bloomberg +--,12",Pete Buttigieg,Amy Klobuchar +36-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,18,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden +36-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,19,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard +36-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,20,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders +46-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar +46-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,12 +46-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Elizabeth Warren +46-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,4,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,12,Tulsi Gabbard +46-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tom Steyer +46-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer +46-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden +46-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren +46-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Bernie Sanders +46-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +46-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12 +46-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,12,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden +46-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg +46-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden +46-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Tulsi Gabbard +46-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,16,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +46-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,17,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Bernie Sanders,Amy Klobuchar +46-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,12 +46-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,19,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer +46-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg +14-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,1,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard +14-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +14-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg +14-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,4,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg +14-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote +14-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,6,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +14-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Tulsi Gabbard +14-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +14-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Tom Steyer +14-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,10,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar +14-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,12,Tom Steyer +14-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg +14-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,13,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg +14-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,14,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren +14-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Pete Buttigieg,12,Amy Klobuchar +14-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote +14-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard +14-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,18,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 +14-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,19,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 +14-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,12,Amy Klobuchar +13-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,1,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar +13-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Bernie Sanders +13-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Tom Steyer,Joseph R. Biden +13-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,4,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Joseph R. Biden,Michael R. Bloomberg +13-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,5,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Pete Buttigieg +13-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,6,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard,Bernie Sanders +13-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,7,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,12,Joseph R. Biden,Bernie Sanders +13-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,8,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tulsi Gabbard,Tom Steyer +13-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Bernie Sanders +13-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,10,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +13-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,11,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar +13-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,12 +13-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Michael R. Bloomberg,Elizabeth Warren +13-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden +13-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,15,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard +13-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12 +13-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,17,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders +13-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,12,Bernie Sanders,"Joseph R. Biden +--,Tom Steyer +--,Bernie Sanders +--,Tulsi Gabbard +--,Elizabeth Warren +--,Michael R. Bloomberg +--,Pete Buttigieg" +13-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,19,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders +13-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,20,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +29-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,1,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer +29-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,2,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar +29-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +29-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer +29-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,5,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +29-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,6,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,12,Michael R. Bloomberg +29-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,7,,Precinct 1,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar +29-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,8,,Precinct 1,12,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar +29-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,9,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,undervote,12 +29-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer +29-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,11,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +29-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,12,,Precinct 1,12,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg +29-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Bernie Sanders +29-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,14,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard +29-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,15,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +29-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,16,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard +29-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Bernie Sanders,Elizabeth Warren +29-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,18,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg +29-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,19,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +29-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg +12-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden +12-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,2,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden,Elizabeth Warren +12-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,3,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar +12-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,4,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg +12-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,5,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg +12-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,6,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,12 +12-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,7,,Precinct 1,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +12-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,Amy Klobuchar,12,Pete Buttigieg +12-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,9,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden +12-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12 +12-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar +12-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,12,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren +12-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +12-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,14,,Precinct 1,Joseph R. Biden,Joseph R. Biden,Pete Buttigieg,Tom Steyer,12 +12-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard +12-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,"Amy Klobuchar +--,Pete Buttigieg +--,12",Michael R. Bloomberg,Joseph R. Biden +12-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar +12-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 +12-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote +12-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,20,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +35-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden +35-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,2,,Precinct 1,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg +35-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,3,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Amy Klobuchar +35-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +35-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,5,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,12,Elizabeth Warren +35-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,6,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,12,Tulsi Gabbard +35-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,7,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden +35-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,8,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg +35-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,9,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders +35-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12 +35-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar +35-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,12,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg +35-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,13,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg +35-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders +35-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,15,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Pete Buttigieg +35-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,16,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders +35-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,17,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden +35-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,18,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Joseph R. Biden,Tulsi Gabbard +35-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote +35-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,20,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg +19-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,1,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg +19-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,2,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12 +19-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,3,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 +19-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,4,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg,Bernie Sanders +19-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Amy Klobuchar +19-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 +19-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,7,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Elizabeth Warren +19-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,8,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Pete Buttigieg +19-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,9,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar +19-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,10,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden +19-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,11,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg +19-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden +19-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,13,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden +19-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,14,,Precinct 1,Pete Buttigieg,12,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders +19-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,15,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg +19-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 +19-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,17,,Precinct 1,Tom Steyer,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard +19-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,18,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Bernie Sanders,Pete Buttigieg +19-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar +19-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Tulsi Gabbard,Elizabeth Warren +11-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,12,Pete Buttigieg +11-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg +11-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren +11-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,4,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg +11-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,5,,Precinct 1,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden +11-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,6,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg +11-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +11-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,8,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Tulsi Gabbard,12 +11-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +11-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,12,Tulsi Gabbard +11-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders,Tom Steyer +11-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +11-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,13,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,"Joseph R. Biden +--,Tom Steyer +--,Bernie Sanders +--,Amy Klobuchar +--,Tulsi Gabbard +--,Michael R. Bloomberg",Elizabeth Warren +11-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +11-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,15,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12,Bernie Sanders +11-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,16,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden +11-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders +11-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,18,,Precinct 1,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden +11-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden +11-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,20,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg +45-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,1,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders +45-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,2,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Amy Klobuchar +45-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,3,,Precinct 1,12,Tom Steyer,Bernie Sanders,Joseph R. Biden,Pete Buttigieg +45-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,4,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +45-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,5,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden +45-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,6,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders +45-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard +45-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,8,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Amy Klobuchar +45-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,9,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg +45-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,10,,Precinct 1,Tom Steyer,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard +45-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg +45-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders +45-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg +45-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,14,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren +45-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,15,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden +45-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,Bernie Sanders +45-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +45-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,18,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Tulsi Gabbard +45-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,19,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +45-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,12,Amy Klobuchar,Joseph R. Biden +27-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,1,,Precinct 1,12,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +27-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,2,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar +27-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +27-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,4,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Elizabeth Warren,12 +27-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,5,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer +27-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden +27-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,7,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tulsi Gabbard,Elizabeth Warren +27-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,8,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders +27-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Amy Klobuchar +27-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,10,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,12 +27-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,11,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer +27-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +27-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,12 +27-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard +27-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12 +27-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg +27-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg +27-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,18,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,12,Tom Steyer +27-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,19,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden +27-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,20,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer +10-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer +10-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,2,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard,12 +10-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,3,,Precinct 1,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg +10-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,4,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard +10-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders +10-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,6,,Precinct 1,"Joseph R. Biden +--,Tom Steyer +--,Bernie Sanders +--,Amy Klobuchar +--,Tulsi Gabbard +--,Elizabeth Warren +--,Michael R. Bloomberg +Joseph R. Biden-Bernie Sanders-,Pete Buttigieg",12,Elizabeth Warren,Joseph R. Biden,Bernie Sanders +10-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,7,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tom Steyer,Joseph R. Biden +10-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 +10-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote +10-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,10,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,12 +10-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,12,Pete Buttigieg +10-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,12,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden +10-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,13,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren +10-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,14,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren,Joseph R. Biden +10-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,15,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Amy Klobuchar +10-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,16,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg +10-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,17,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden +10-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,18,,Precinct 1,12,Tom Steyer,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +10-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,19,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Tulsi Gabbard,Elizabeth Warren +10-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,20,,Precinct 1,12,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tom Steyer +44-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,1,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden +44-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,2,,Precinct 1,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren +44-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,3,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders +44-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,12,Bernie Sanders +44-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,5,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +44-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,6,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard +44-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,7,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +44-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,8,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden +44-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,9,,Precinct 1,Tom Steyer,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg +44-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg +44-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,11,,Precinct 1,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12,Joseph R. Biden +44-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,12,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer +44-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +44-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,14,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Bernie Sanders +44-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,15,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,12 +44-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,16,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Amy Klobuchar +44-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,17,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren +44-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,18,,Precinct 1,Bernie Sanders,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg +44-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,19,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden +44-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,20,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg +1-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren +1-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote +1-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,3,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders +1-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,4,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders +1-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,5,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12 +1-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,6,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +1-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,7,,Precinct 1,Tulsi Gabbard,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren +1-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +1-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Elizabeth Warren +1-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,10,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 +1-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Bernie Sanders,Amy Klobuchar +1-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,12,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +1-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,13,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,12 +1-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,14,,Precinct 1,Joseph R. Biden,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders +1-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +1-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Bernie Sanders,12 +1-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,17,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden +1-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard +1-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,19,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren +1-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,20,,Precinct 1,Tulsi Gabbard,Tom Steyer,12,Amy Klobuchar,Joseph R. Biden +43-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,1,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,12 +43-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,2,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tom Steyer +43-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard +43-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,4,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Amy Klobuchar +43-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Joseph R. Biden,Amy Klobuchar +43-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,6,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer +43-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,7,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +43-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +43-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg +43-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,10,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer +43-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders +43-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,12,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Pete Buttigieg +43-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +43-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote +43-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg +43-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,16,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg +43-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Amy Klobuchar,Elizabeth Warren +43-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar +43-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,19,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren +43-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,20,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +9-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,1,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar +9-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer +9-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +9-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +9-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,5,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg,Bernie Sanders +9-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +9-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,7,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 +9-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,8,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer +9-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,9,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden +9-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg +9-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard +9-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +9-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,13,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Pete Buttigieg +9-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,14,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden +9-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Tom Steyer +9-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Tulsi Gabbard,12,Michael R. Bloomberg +9-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12 +9-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12 +9-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,19,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg +9-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,12 +4-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,1,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 +4-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,2,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,12 +4-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,3,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Joseph R. Biden +4-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer +4-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,5,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 +4-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,6,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg +4-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Elizabeth Warren +4-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,8,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren +4-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,9,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders +4-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Tulsi Gabbard,Tom Steyer +4-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,11,,Precinct 1,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12 +4-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg +4-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard +4-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,14,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren +4-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,15,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +4-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,16,,Precinct 1,12,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders +4-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,17,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +4-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,12 +4-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer +4-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,20,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 +8-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,1,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar +8-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren +8-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +8-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders +8-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,5,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,12 +8-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote +8-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,7,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard +8-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg +8-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders +8-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,10,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg +8-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg +8-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,12,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +8-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +8-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,14,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,"Bernie Sanders +--,Amy Klobuchar",Pete Buttigieg +8-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 +8-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,12 +8-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,17,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,12 +8-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard +8-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote +8-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg +7-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,1,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren +7-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Pete Buttigieg +7-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,3,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Tulsi Gabbard,Bernie Sanders +7-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,4,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Tom Steyer +7-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Bernie Sanders +7-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,6,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Joseph R. Biden,12 +7-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,12,Tom Steyer +7-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,8,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard +7-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,9,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg +7-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,10,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar +7-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,11,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tom Steyer,Amy Klobuchar +7-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote +7-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,13,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,12 +7-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,14,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +7-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 +7-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +7-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Elizabeth Warren +7-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,18,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren +7-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren +7-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,20,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Pete Buttigieg +28-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,1,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Tom Steyer +28-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,2,,Precinct 1,Tom Steyer,undervote,Elizabeth Warren,Pete Buttigieg,Bernie Sanders +28-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,3,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard +28-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,4,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg +28-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren +28-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,6,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Tulsi Gabbard +28-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 +28-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer +28-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,9,,Precinct 1,Bernie Sanders,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar +28-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +28-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,11,,Precinct 1,12,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,Amy Klobuchar +28-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote +28-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,13,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren +28-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,14,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg +28-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,15,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer +28-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12,Tulsi Gabbard +28-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,17,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tom Steyer +28-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,12,Bernie Sanders +28-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,19,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Tulsi Gabbard +28-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,20,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +6-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders +6-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden +6-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,3,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg +6-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer +6-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,5,,Precinct 1,"Joseph R. Biden +--,Amy Klobuchar +--,Tulsi Gabbard +--,Michael R. Bloomberg +--,Pete Buttigieg +Bernie Sanders-Tom Steyer-,12",Tom Steyer,Elizabeth Warren,Bernie Sanders,Tom Steyer +6-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,6,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,Joseph R. Biden +6-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,7,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,12 +6-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,8,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg +6-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,9,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard +6-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,10,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tom Steyer +6-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,11,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg +6-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,12,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar +6-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,13,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,12,Tom Steyer +6-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg +6-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,15,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Bernie Sanders +6-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,16,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Elizabeth Warren,Tom Steyer +6-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Tom Steyer,Amy Klobuchar +6-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,18,,Precinct 1,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +6-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,12,Elizabeth Warren +6-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar +5-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +5-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar +5-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,3,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12 +5-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,4,,Precinct 1,12,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders +5-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,5,,Precinct 1,12,Michael R. Bloomberg,Tulsi Gabbard,Tom Steyer,Elizabeth Warren +5-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,6,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Amy Klobuchar,Tulsi Gabbard +5-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +5-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,8,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar +5-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,9,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +5-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard +5-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,11,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren +5-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,12,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Tulsi Gabbard +5-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,13,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +5-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,14,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +5-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote +5-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg +5-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,17,,Precinct 1,Bernie Sanders,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 +5-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Tom Steyer,Amy Klobuchar +5-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +5-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer +3-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,1,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Bernie Sanders,Joseph R. Biden +3-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,2,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Amy Klobuchar,Michael R. Bloomberg +3-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,3,,Precinct 1,Bernie Sanders,Amy Klobuchar,12,Michael R. Bloomberg,Tom Steyer +3-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 +3-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg +3-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,6,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg +3-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg +3-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,8,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +3-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,9,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg +3-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,10,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Tom Steyer +3-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,11,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer +3-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,12,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard +3-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +3-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,14,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden +3-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,15,,Precinct 1,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard +3-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +3-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,17,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg +3-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,18,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12 +3-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,19,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg,Bernie Sanders +3-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,20,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Amy Klobuchar +2-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,1,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren +2-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,2,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard +2-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,3,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg +2-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 +2-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,5,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg +2-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,6,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12,Michael R. Bloomberg +2-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,7,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar +2-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,8,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +2-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders +2-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,10,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Bernie Sanders +2-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,11,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +2-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden +2-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,13,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg +2-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,14,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren +2-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +2-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren +2-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,17,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden +2-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12 +2-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,19,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg +2-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,20,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Amy Klobuchar,Bernie Sanders diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv index b41127b2..9f4be203 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv @@ -1,11 +1,11 @@ -Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3 -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-1,,,Mookie Blaylock,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-2,,,Mookie Blaylock,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-3,,,Mookie Blaylock,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-4,,,Mookie Blaylock,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-5,,,Yinka Dare,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-6,,,Yinka Dare,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-7,,,Yinka Dare,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-8,,,George Gervin,undervote,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-9,,,George Gervin,Yinka Dare,undervote -../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-10,,,Sedale Threatt,George Gervin,undervote +RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3 +simple_ess_cvr.xlsx-1,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-1,,,Mookie Blaylock,undervote,undervote +simple_ess_cvr.xlsx-2,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-2,,,Mookie Blaylock,undervote,undervote +simple_ess_cvr.xlsx-3,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-3,,,Mookie Blaylock,undervote,undervote +simple_ess_cvr.xlsx-4,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-4,,,Mookie Blaylock,undervote,undervote +simple_ess_cvr.xlsx-5,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-5,,,Yinka Dare,undervote,undervote +simple_ess_cvr.xlsx-6,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-6,,,Yinka Dare,undervote,undervote +simple_ess_cvr.xlsx-7,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-7,,,Yinka Dare,undervote,undervote +simple_ess_cvr.xlsx-8,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-8,,,George Gervin,undervote,undervote +simple_ess_cvr.xlsx-9,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-9,,,George Gervin,Yinka Dare,undervote +simple_ess_cvr.xlsx-10,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-10,,,Sedale Threatt,George Gervin,undervote From 276a79ce7ec867352cc5dbae35c0ffbe6783916d Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Wed, 15 Jan 2025 11:41:44 -0500 Subject: [PATCH 05/11] Fixed broken TabulatorTest "Test Convert to rctab_cvr works for Dominion" --- .../conversions_from_dominion_expected.csv | 90 +++++++++---------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv index e3ec3e75..3a0621ad 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv @@ -87,11 +87,11 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 26-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,6,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Bernie Sanders 26-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,7,,Precinct 1,Joseph R. Biden,Elizabeth Warren,12,Joseph R. Biden,Bernie Sanders 26-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,8,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,"Joseph R. Biden ---,Tom Steyer ---,Bernie Sanders ---,Tulsi Gabbard ---,Pete Buttigieg ---,12" +Tom Steyer +Bernie Sanders +Tulsi Gabbard +Pete Buttigieg +12" 26-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,9,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar 26-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,12,Bernie Sanders 26-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar @@ -201,8 +201,8 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 32-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,15,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Elizabeth Warren 32-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,16,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden 32-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,"Tulsi Gabbard ---,Michael R. Bloomberg ---,Pete Buttigieg",Joseph R. Biden,Elizabeth Warren +Michael R. Bloomberg +Pete Buttigieg",Joseph R. Biden,Elizabeth Warren 32-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,18,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar 32-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard 32-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard @@ -389,11 +389,11 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 16-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,1,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Amy Klobuchar 16-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,2,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg 16-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,"Joseph R. Biden ---,Tom Steyer ---,Bernie Sanders ---,Amy Klobuchar ---,Elizabeth Warren ---,12" +Tom Steyer +Bernie Sanders +Amy Klobuchar +Elizabeth Warren +12" 16-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,4,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren 16-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,5,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg 16-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Amy Klobuchar @@ -500,12 +500,12 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 15-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,7,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar 15-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,12,Elizabeth Warren 15-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,9,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,"Joseph R. Biden ---,Amy Klobuchar ---,Tulsi Gabbard ---,Elizabeth Warren ---,Michael R. Bloomberg ---,Pete Buttigieg ---,12" +Amy Klobuchar +Tulsi Gabbard +Elizabeth Warren +Michael R. Bloomberg +Pete Buttigieg +12" 15-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote 15-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote 15-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,12,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard @@ -554,7 +554,7 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 36-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote 36-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote 36-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,17,,Precinct 1,Joseph R. Biden,Bernie Sanders,"Michael R. Bloomberg ---,12",Pete Buttigieg,Amy Klobuchar +12",Pete Buttigieg,Amy Klobuchar 36-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,18,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden 36-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,19,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard 36-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,20,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders @@ -616,12 +616,12 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 13-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12 13-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,17,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders 13-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,12,Bernie Sanders,"Joseph R. Biden ---,Tom Steyer ---,Bernie Sanders ---,Tulsi Gabbard ---,Elizabeth Warren ---,Michael R. Bloomberg ---,Pete Buttigieg" +Tom Steyer +Bernie Sanders +Tulsi Gabbard +Elizabeth Warren +Michael R. Bloomberg +Pete Buttigieg" 13-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,19,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders 13-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,20,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden 29-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,1,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer @@ -660,8 +660,8 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 12-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,14,,Precinct 1,Joseph R. Biden,Joseph R. Biden,Pete Buttigieg,Tom Steyer,12 12-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard 12-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,"Amy Klobuchar ---,Pete Buttigieg ---,12",Michael R. Bloomberg,Joseph R. Biden +Pete Buttigieg +12",Michael R. Bloomberg,Joseph R. Biden 12-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar 12-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 12-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote @@ -719,11 +719,11 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 11-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders,Tom Steyer 11-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg 11-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,13,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,"Joseph R. Biden ---,Tom Steyer ---,Bernie Sanders ---,Amy Klobuchar ---,Tulsi Gabbard ---,Michael R. Bloomberg",Elizabeth Warren +Tom Steyer +Bernie Sanders +Amy Klobuchar +Tulsi Gabbard +Michael R. Bloomberg",Elizabeth Warren 11-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar 11-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,15,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12,Bernie Sanders 11-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,16,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden @@ -777,13 +777,13 @@ RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Recor 10-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,4,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard 10-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders 10-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,6,,Precinct 1,"Joseph R. Biden ---,Tom Steyer ---,Bernie Sanders ---,Amy Klobuchar ---,Tulsi Gabbard ---,Elizabeth Warren ---,Michael R. Bloomberg -Joseph R. Biden-Bernie Sanders-,Pete Buttigieg",12,Elizabeth Warren,Joseph R. Biden,Bernie Sanders +Tom Steyer +Bernie Sanders +Amy Klobuchar +Tulsi Gabbard +Elizabeth Warren +Michael R. Bloomberg +Pete Buttigieg",12,Elizabeth Warren,Joseph R. Biden,Bernie Sanders 10-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,7,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tom Steyer,Joseph R. Biden 10-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 10-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote @@ -912,7 +912,7 @@ Joseph R. Biden-Bernie Sanders-,Pete Buttigieg",12,Elizabeth Warren,Joseph R. Bi 8-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,12,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg 8-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard 8-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,14,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,"Bernie Sanders ---,Amy Klobuchar",Pete Buttigieg +Amy Klobuchar",Pete Buttigieg 8-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 8-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,12 8-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,17,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,12 @@ -964,11 +964,11 @@ Joseph R. Biden-Bernie Sanders-,Pete Buttigieg",12,Elizabeth Warren,Joseph R. Bi 6-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,3,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg 6-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer 6-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,5,,Precinct 1,"Joseph R. Biden ---,Amy Klobuchar ---,Tulsi Gabbard ---,Michael R. Bloomberg ---,Pete Buttigieg -Bernie Sanders-Tom Steyer-,12",Tom Steyer,Elizabeth Warren,Bernie Sanders,Tom Steyer +Amy Klobuchar +Tulsi Gabbard +Michael R. Bloomberg +Pete Buttigieg +12",Tom Steyer,Elizabeth Warren,Bernie Sanders,Tom Steyer 6-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,6,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,Joseph R. Biden 6-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,7,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,12 6-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,8,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg From dccb737d52386916af85fd303c23a3a80fe7dc7f Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Tue, 21 Jan 2025 07:52:54 -0500 Subject: [PATCH 06/11] Updates per GitHub comments --- .../java/network/brightspots/rcv/BaseCvrReader.java | 1 + .../java/network/brightspots/rcv/CastVoteRecord.java | 12 +++++------- .../java/network/brightspots/rcv/OutputWriter.java | 10 ++++++---- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/BaseCvrReader.java b/src/main/java/network/brightspots/rcv/BaseCvrReader.java index df7b30bc..1d8592b5 100644 --- a/src/main/java/network/brightspots/rcv/BaseCvrReader.java +++ b/src/main/java/network/brightspots/rcv/BaseCvrReader.java @@ -56,6 +56,7 @@ public void runAdditionalValidations(List castVoteRecords) if (!isRankingAllowed(maxRanking, cvr.getContestId())) { Logger.severe( "CVR \"%s\" has a ranking %d, but contest \"%s\" has max ranking %s!", + // TODO: Do we want this to use the getSuppliedId or the getId method? cvr.getId(), maxRanking, cvr.getContestId(), config.getMaxRankingsAllowedAsString()); throw new CastVoteRecord.CvrParseException(); } diff --git a/src/main/java/network/brightspots/rcv/CastVoteRecord.java b/src/main/java/network/brightspots/rcv/CastVoteRecord.java index 6f592fb1..76e11351 100644 --- a/src/main/java/network/brightspots/rcv/CastVoteRecord.java +++ b/src/main/java/network/brightspots/rcv/CastVoteRecord.java @@ -129,14 +129,12 @@ boolean doesUseLastAllowedRanking() { } // This represents the canonical ID used for audit logs and RCTab CVR - String getPrimaryId() { + String getId() { return !isNullOrBlank(computedId) ? computedId : suppliedId; } - // TODO: Before merging PR determine if we still need getId & - // the Record ID it prints to the RCTab CVR - String getId() { - return suppliedId != null ? suppliedId : computedId; + String getSuppliedId() { + return suppliedId != null ? suppliedId : ""; } // logs the outcome for this CVR for this round for auditing purposes @@ -145,9 +143,9 @@ void logRoundOutcome( StringBuilder logStringBuilder = new StringBuilder(); logStringBuilder.append("[Round] ").append(round).append(" [CVR] "); - logStringBuilder.append(getPrimaryId()); + logStringBuilder.append(getId()); if (outcomeType == VoteOutcomeType.IGNORED) { - logStringBuilder.append(" [ was ignored] "); + logStringBuilder.append(" [was ignored] "); } else if (outcomeType == VoteOutcomeType.EXHAUSTED) { logStringBuilder.append(" [became inactive] "); } else { diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index 52ee6dcc..0d59710b 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -698,13 +698,13 @@ String writeRcTabCvrCsv( // print header: // RCTab CVR Id, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, // rank 1 selection, rank 2 selection, ... rank maxRanks selection - csvPrinter.print("RCTab CVR Id"); csvPrinter.print("Source Filepath"); csvPrinter.print("CVR Provider"); csvPrinter.print("Contest Id"); + csvPrinter.print("RCTab CVR Id"); csvPrinter.print("Tabulator Id"); csvPrinter.print("Batch Id"); - csvPrinter.print("Record Id"); + csvPrinter.print("Vendor Id"); csvPrinter.print("Precinct"); csvPrinter.print("Precinct Portion"); @@ -738,13 +738,13 @@ String writeRcTabCvrCsv( } CastVoteRecord castVoteRecord = castVoteRecords.get(i); - csvPrinter.print(castVoteRecord.getPrimaryId()); csvPrinter.print(currentSourceData.source.getFilePath()); csvPrinter.print(currentSourceData.source.getProvider()); csvPrinter.print(castVoteRecord.getContestId()); + csvPrinter.print(castVoteRecord.getId()); csvPrinter.print(castVoteRecord.getTabulatorId()); csvPrinter.print(castVoteRecord.getSlice(TabulateBySlice.BATCH)); - csvPrinter.print(castVoteRecord.getId()); + csvPrinter.print(castVoteRecord.getSuppliedId()); csvPrinter.print(castVoteRecord.getSlice(ContestConfig.TabulateBySlice.PRECINCT)); csvPrinter.print(castVoteRecord.getPrecinctPortion()); printRankings(currentSourceData.source.getUndeclaredWriteInLabel(), maxRank, @@ -877,6 +877,7 @@ private List> generateCdfMapForCvrs(List cas for (CastVoteRecord cvr : castVoteRecords) { List> cvrSnapshots = new LinkedList<>(); cvrSnapshots.add(generateCvrSnapshotMap(cvr, null, null)); + // TODO: Do we want this to use the getSuppliedId or the getId method? String sanitizedId = sanitizeStringForOutput(cvr.getId()); // copy most recent round snapshot data to subsequent rounds // until more snapshot data is available @@ -983,6 +984,7 @@ private Map generateCvrSnapshotMap( entry("@type", "CVR.CVRContest")); return Map.ofEntries( + // TODO: Do we want this to use the getSuppliedId or the getId method? entry("@id", generateCvrSnapshotId(sanitizeStringForOutput(cvr.getId()), round)), entry("CVRContest", new Map[] {contestMap}), entry("Type", round != null ? "interpreted" : "original"), From 16941f7939a0074f5bbdb08fe502d71270c44c4f Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Tue, 21 Jan 2025 07:58:34 -0500 Subject: [PATCH 07/11] fixed broken tests --- .../aliases_cdf_json_expected_cdf_cvr.json | 364 +- .../conversions_from_cdf_expected.csv | 62 +- ...conversions_from_cdf_expected_cdf_cvr.json | 182 +- .../conversions_from_dominion_expected.csv | 2002 +++--- ...rsions_from_dominion_expected_cdf_cvr.json | 6004 ++++++++--------- .../conversions_from_ess_expected.csv | 22 +- ...skipped_first_choice_expected_cdf_cvr.json | 146 +- ..._exhaust_at_overvote_expected_cdf_cvr.json | 182 +- ...vervote_skip_to_next_expected_cdf_cvr.json | 182 +- ...ipped_choice_exhaust_expected_cdf_cvr.json | 182 +- ..._skipped_choice_next_expected_cdf_cvr.json | 182 +- ...ipped_choice_exhaust_expected_cdf_cvr.json | 182 +- ..._6_duplicate_exhaust_expected_cdf_cvr.json | 182 +- ...plicate_skip_to_next_expected_cdf_cvr.json | 182 +- ...test_set_8_multi_cdf_expected_cdf_cvr.json | 290 +- ...fractional_threshold_expected_cdf_cvr.json | 542 +- ...nner_whole_threshold_expected_cdf_cvr.json | 542 +- 17 files changed, 5715 insertions(+), 5715 deletions(-) diff --git a/src/test/resources/network/brightspots/rcv/test_data/aliases_cdf_json/aliases_cdf_json_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/aliases_cdf_json/aliases_cdf_json_expected_cdf_cvr.json index 8dc0c2fa..9e2e6d32 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/aliases_cdf_json/aliases_cdf_json_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/aliases_cdf_json/aliases_cdf_json_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-cdf_json_file1_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39,7 +39,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -74,7 +74,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -109,7 +109,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -144,13 +144,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-cdf_json_file1_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -199,7 +199,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -248,7 +248,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -297,7 +297,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -346,13 +346,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-cdf_json_file1_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -401,7 +401,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -450,7 +450,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -499,7 +499,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -548,13 +548,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-cdf_json_file1_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -603,7 +603,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -652,7 +652,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -701,7 +701,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -750,13 +750,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-cdf_json_file1_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -805,7 +805,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -854,7 +854,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -903,7 +903,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -952,13 +952,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-cdf_json_file1_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1007,7 +1007,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1056,7 +1056,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1105,7 +1105,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1154,13 +1154,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-cdf_json_file1_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1209,7 +1209,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1258,7 +1258,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1307,7 +1307,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1356,13 +1356,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-cdf_json_file1_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1401,7 +1401,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1440,7 +1440,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1479,7 +1479,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1518,13 +1518,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-cdf_json_file1_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1573,7 +1573,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1622,7 +1622,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1671,7 +1671,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1720,13 +1720,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-cdf_json_file1_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1775,7 +1775,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1824,7 +1824,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1873,7 +1873,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1922,13 +1922,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-cdf_json_file1_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1977,7 +1977,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2026,7 +2026,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2075,7 +2075,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2124,13 +2124,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-cdf_json_file1_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2179,7 +2179,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2228,7 +2228,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2277,7 +2277,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2326,13 +2326,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-cdf_json_file1_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2361,7 +2361,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2390,7 +2390,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2419,7 +2419,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2448,13 +2448,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-cdf_json_file1_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2493,7 +2493,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2532,7 +2532,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2571,7 +2571,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2610,13 +2610,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-cdf_json_file1_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2665,7 +2665,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-cdf_json_file1_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2714,7 +2714,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-cdf_json_file1_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2763,7 +2763,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-cdf_json_file1_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2812,13 +2812,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_15_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-cdf_json_file2_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2853,7 +2853,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2888,7 +2888,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2923,7 +2923,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2958,13 +2958,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-cdf_json_file2_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3013,7 +3013,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3062,7 +3062,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3111,7 +3111,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3160,13 +3160,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-cdf_json_file2_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3215,7 +3215,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3264,7 +3264,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3313,7 +3313,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3362,13 +3362,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-cdf_json_file2_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3417,7 +3417,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3466,7 +3466,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3515,7 +3515,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3564,13 +3564,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-cdf_json_file2_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3619,7 +3619,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3668,7 +3668,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3717,7 +3717,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3766,13 +3766,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-cdf_json_file2_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3821,7 +3821,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3870,7 +3870,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3919,7 +3919,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3968,13 +3968,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-cdf_json_file2_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4023,7 +4023,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4072,7 +4072,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4121,7 +4121,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4170,13 +4170,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-cdf_json_file2_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4215,7 +4215,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4254,7 +4254,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4293,7 +4293,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4332,13 +4332,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-cdf_json_file2_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4387,7 +4387,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4436,7 +4436,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4485,7 +4485,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4534,13 +4534,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-cdf_json_file2_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4589,7 +4589,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4638,7 +4638,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4687,7 +4687,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4736,13 +4736,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-cdf_json_file2_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4791,7 +4791,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4840,7 +4840,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4889,7 +4889,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4938,13 +4938,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-cdf_json_file2_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4993,7 +4993,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5042,7 +5042,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5091,7 +5091,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5140,13 +5140,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-cdf_json_file2_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5175,7 +5175,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5204,7 +5204,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5233,7 +5233,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5262,13 +5262,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-cdf_json_file2_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5307,7 +5307,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5346,7 +5346,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5385,7 +5385,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5424,13 +5424,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-cdf_json_file2_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5479,7 +5479,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-cdf_json_file2_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5528,7 +5528,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-cdf_json_file2_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5577,7 +5577,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-cdf_json_file2_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5626,7 +5626,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -5669,7 +5669,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2023-03-22T13:47:24-04:00", + "GeneratedDate" : "2025-01-21T04:25:22-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", @@ -5685,4 +5685,4 @@ "Manufacturer" : "Bright Spots" } ], "Version" : "1.0.0" -} +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv index 92cef682..73fdea2c 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected.csv @@ -1,31 +1,31 @@ -RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4 -cdf_json_file1_cvr.json(1),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote -cdf_json_file1_cvr.json(2),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 -cdf_json_file1_cvr.json(3),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file1_cvr.json(4),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -cdf_json_file1_cvr.json(5),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file1_cvr.json(6),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -cdf_json_file1_cvr.json(7),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 -cdf_json_file1_cvr.json(8),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote -cdf_json_file1_cvr.json(9),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file1_cvr.json(10),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 -cdf_json_file1_cvr.json(11),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file1_cvr.json(12),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 -cdf_json_file1_cvr.json(13),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote -cdf_json_file1_cvr.json(14),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote -cdf_json_file1_cvr.json(15),../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 -cdf_json_file2_cvr.json(1),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote -cdf_json_file2_cvr.json(2),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 -cdf_json_file2_cvr.json(3),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file2_cvr.json(4),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -cdf_json_file2_cvr.json(5),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file2_cvr.json(6),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 -cdf_json_file2_cvr.json(7),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 -cdf_json_file2_cvr.json(8),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote -cdf_json_file2_cvr.json(9),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file2_cvr.json(10),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 -cdf_json_file2_cvr.json(11),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 -cdf_json_file2_cvr.json(12),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 -cdf_json_file2_cvr.json(13),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote -cdf_json_file2_cvr.json(14),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote -cdf_json_file2_cvr.json(15),../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +Source Filepath,CVR Provider,Contest Id,RCTab CVR Id,Tabulator Id,Batch Id,Vendor Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(1),,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(2),,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(3),,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(4),,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(5),,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(6),,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(7),,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(8),,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(9),,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(10),,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(11),,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(12),,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(13),,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(14),,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote +../_shared/cdf_json/cdf_json_file1_cvr.json,cdf,,cdf_json_file1_cvr.json(15),,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(1),,,1,,,Candidate D Name File 1,Candidate D Name File 1,Unused Display Name Candidate A,undervote +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(2),,,2,,,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate B Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(3),,,3,,,Candidate C Name File 1,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(4),,,4,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(5),,,5,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(6),,,6,,,Unused Display Name Candidate A,Candidate C Name File 1,Candidate B Name File 1,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(7),,,7,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate C Name File 1,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(8),,,8,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate C Name File 1,undervote +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(9),,,9,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(10),,,10,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(11),,,11,,,Candidate B Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,Candidate D Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(12),,,12,,,Candidate B Name File 1,Unused Display Name Candidate A,Candidate D Name File 1,Candidate C Name File 1 +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(13),,,13,,,Candidate C Name File 1,Candidate B Name File 1,undervote,undervote +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(14),,,14,,,Candidate D Name File 1,Candidate C Name File 1,Unused Display Name Candidate A,undervote +../_shared/cdf_json/cdf_json_file2_cvr.json,cdf,,cdf_json_file2_cvr.json(15),,,15,,,Unused Display Name Candidate A,Candidate B Name File 1,Candidate D Name File 1,Candidate C Name File 1 diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected_cdf_cvr.json index 0250544f..51995231 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_cdf/conversions_from_cdf_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-cdf_json_file1_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39,13 +39,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_1_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-cdf_json_file1_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -94,13 +94,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_2_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-cdf_json_file1_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -149,13 +149,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_3_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-cdf_json_file1_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -204,13 +204,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_4_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-cdf_json_file1_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -259,13 +259,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_5_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-cdf_json_file1_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -314,13 +314,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_6_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-cdf_json_file1_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -369,13 +369,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_7_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-cdf_json_file1_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -414,13 +414,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_8_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-cdf_json_file1_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -469,13 +469,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_9_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-cdf_json_file1_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -524,13 +524,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_10_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-cdf_json_file1_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -579,13 +579,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_11_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-cdf_json_file1_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -634,13 +634,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_12_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-cdf_json_file1_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -669,13 +669,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_13_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-cdf_json_file1_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -714,13 +714,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_14_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "cdf_json_file1_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-cdf_json_file1_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -769,13 +769,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-cdf_json_file1_cvr.json_15_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-cdf_json_file2_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -810,13 +810,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_1_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-cdf_json_file2_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -865,13 +865,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_2_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-cdf_json_file2_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -920,13 +920,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_3_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-cdf_json_file2_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -975,13 +975,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_4_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-cdf_json_file2_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1030,13 +1030,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_5_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-cdf_json_file2_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1085,13 +1085,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_6_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-cdf_json_file2_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1140,13 +1140,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_7_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-cdf_json_file2_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1185,13 +1185,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_8_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-cdf_json_file2_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1240,13 +1240,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_9_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-cdf_json_file2_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1295,13 +1295,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_10_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-cdf_json_file2_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1350,13 +1350,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_11_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-cdf_json_file2_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1405,13 +1405,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_12_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-cdf_json_file2_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1440,13 +1440,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_13_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-cdf_json_file2_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1485,13 +1485,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_14_", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "cdf_json_file2_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-cdf_json_file2_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1540,7 +1540,7 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-cdf_json_file2_cvr.json_15_", "ElectionId" : "election-001" } ], "Election" : [ { @@ -1583,7 +1583,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2023-06-16T11:39:55-04:00", + "GeneratedDate" : "2025-01-21T06:47:28-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv index 3a0621ad..cf2a787e 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected.csv @@ -1,782 +1,782 @@ -RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4,Rank 5 -42-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,1,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tulsi Gabbard -42-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,2,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -42-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,3,,Precinct 1,12,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg -42-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12,Elizabeth Warren -42-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote -42-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,6,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,12 -42-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -42-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,8,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg -42-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,9,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg -42-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,10,,Precinct 1,Tom Steyer,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg -42-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -42-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,12,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 -42-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,13,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard -42-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Tulsi Gabbard -42-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,15,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg -42-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 -42-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,17,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,12,Pete Buttigieg -42-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,18,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 -42-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren -42-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,42,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -34-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,1,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg -34-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote -34-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,3,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg -34-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,4,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard -34-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,5,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden -34-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote -34-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer -34-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Amy Klobuchar,Michael R. Bloomberg -34-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,9,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 -34-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,10,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Tom Steyer -34-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Elizabeth Warren -34-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,12,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -34-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,13,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,12,Pete Buttigieg -34-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -34-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg -34-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote -34-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg -34-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,18,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg -34-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,19,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren -34-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,34,1,20,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders -50-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,1,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer -50-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg -50-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,3,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -50-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,4,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg -50-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Joseph R. Biden -50-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,6,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -50-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,7,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg -50-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,8,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar -50-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -50-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren -50-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12,Joseph R. Biden -50-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,12,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren -50-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden -50-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote -50-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,15,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer -50-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders -50-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar -50-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -50-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Michael R. Bloomberg,Tulsi Gabbard -50-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,50,1,20,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -18-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,1,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 -18-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,2,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Pete Buttigieg -18-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden -18-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,4,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Tom Steyer,Joseph R. Biden -18-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,5,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard -18-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,6,,Precinct 1,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden -18-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,7,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg -18-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard -18-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,9,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -18-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,10,,Precinct 1,Bernie Sanders,12,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer -18-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,11,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Tom Steyer -18-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12,Elizabeth Warren -18-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,13,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -18-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,14,,Precinct 1,Tom Steyer,Joseph R. Biden,Pete Buttigieg,12,Tulsi Gabbard -18-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,15,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders -18-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -18-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,17,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 -18-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,18,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Amy Klobuchar -18-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg,Tom Steyer -18-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,18,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg -26-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,1,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Pete Buttigieg -26-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,12 -26-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,3,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard -26-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,12 -26-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,5,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard -26-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,6,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Bernie Sanders -26-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,7,,Precinct 1,Joseph R. Biden,Elizabeth Warren,12,Joseph R. Biden,Bernie Sanders -26-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,8,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,"Joseph R. Biden +Source Filepath,CVR Provider,Contest Id,RCTab CVR Id,Tabulator Id,Batch Id,Vendor Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4,Rank 5 +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-1,42,1,1,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-2,42,1,2,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-3,42,1,3,,Precinct 1,12,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-4,42,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-5,42,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-6,42,1,6,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-7,42,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-8,42,1,8,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-9,42,1,9,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-10,42,1,10,,Precinct 1,Tom Steyer,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-11,42,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-12,42,1,12,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-13,42,1,13,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-14,42,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-15,42,1,15,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-16,42,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-17,42,1,17,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-18,42,1,18,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-19,42,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,42-1-20,42,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-1,34,1,1,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-2,34,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-3,34,1,3,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-4,34,1,4,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-5,34,1,5,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-6,34,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-7,34,1,7,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-8,34,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-9,34,1,9,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-10,34,1,10,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-11,34,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-12,34,1,12,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-13,34,1,13,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-14,34,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-15,34,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-16,34,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-17,34,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-18,34,1,18,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-19,34,1,19,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,34-1-20,34,1,20,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-1,50,1,1,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-2,50,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-3,50,1,3,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-4,50,1,4,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-5,50,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-6,50,1,6,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-7,50,1,7,,Precinct 1,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-8,50,1,8,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-9,50,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-10,50,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-11,50,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-12,50,1,12,,Precinct 1,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-13,50,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-14,50,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-15,50,1,15,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-16,50,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-17,50,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-18,50,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-19,50,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,50-1-20,50,1,20,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-1,18,1,1,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-2,18,1,2,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-3,18,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-4,18,1,4,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-5,18,1,5,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-6,18,1,6,,Precinct 1,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-7,18,1,7,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-8,18,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-9,18,1,9,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-10,18,1,10,,Precinct 1,Bernie Sanders,12,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-11,18,1,11,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-12,18,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-13,18,1,13,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-14,18,1,14,,Precinct 1,Tom Steyer,Joseph R. Biden,Pete Buttigieg,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-15,18,1,15,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-16,18,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-17,18,1,17,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-18,18,1,18,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-19,18,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,18-1-20,18,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-1,26,1,1,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-2,26,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-3,26,1,3,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-4,26,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-5,26,1,5,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-6,26,1,6,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-7,26,1,7,,Precinct 1,Joseph R. Biden,Elizabeth Warren,12,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-8,26,1,8,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,"Joseph R. Biden Tom Steyer Bernie Sanders Tulsi Gabbard Pete Buttigieg 12" -26-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,9,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar -26-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,12,Bernie Sanders -26-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar -26-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,12,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12 -26-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,13,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard -26-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,14,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -26-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,15,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -26-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders -26-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,17,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -26-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,18,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Amy Klobuchar -26-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,19,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -26-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,26,1,20,,Precinct 1,undervote,undervote,undervote,undervote,undervote -24-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,1,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tom Steyer,Tulsi Gabbard -24-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,2,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,12 -24-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg -24-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard -24-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,12 -24-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,6,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12 -24-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,7,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Tom Steyer -24-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,8,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,12 -24-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Tom Steyer -24-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,10,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Pete Buttigieg -24-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard -24-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,12,Joseph R. Biden -24-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,12 -24-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,14,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Amy Klobuchar -24-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,15,,Precinct 1,Pete Buttigieg,12,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard -24-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard -24-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,17,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Bernie Sanders -24-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -24-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,19,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden -24-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,24,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -49-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,1,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,12 -49-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -49-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer -49-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -49-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,5,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard -49-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,6,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -49-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren -49-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,8,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Tom Steyer,Bernie Sanders -49-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -49-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,10,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg -49-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,11,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard -49-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 -49-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,13,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -49-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,14,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg -49-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,15,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard -49-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12 -49-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tom Steyer,Pete Buttigieg,12 -49-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,18,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard -49-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,19,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar -49-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,49,1,20,,Precinct 1,12,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden -25-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg,Elizabeth Warren -25-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,2,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,12,Bernie Sanders -25-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,3,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Elizabeth Warren -25-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,4,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard,12 -25-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,5,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg -25-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,6,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden,Tom Steyer -25-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,7,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar,Michael R. Bloomberg -25-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,8,,Precinct 1,undervote,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren -25-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,9,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden -25-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,10,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -25-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Michael R. Bloomberg -25-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Pete Buttigieg -25-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg -25-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders -25-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote -25-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg -25-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard -25-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar -25-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,19,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -25-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,25,1,20,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Joseph R. Biden -33-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,1,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard -33-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg -33-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,3,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Tom Steyer,Pete Buttigieg -33-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -33-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders -33-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,6,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tom Steyer -33-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders -33-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg -33-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,9,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12 -33-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,10,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg -33-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,11,,Precinct 1,Tulsi Gabbard,12,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden -33-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar -33-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,13,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders -33-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Bernie Sanders -33-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Tom Steyer,Amy Klobuchar -33-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,16,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg -33-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren -33-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,18,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard -33-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12 -33-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,33,1,20,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden -32-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,1,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden -32-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,2,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg -32-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,3,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -32-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,4,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar -32-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,5,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 -32-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg -32-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,7,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders -32-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,12 -32-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,9,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar -32-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 -32-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,11,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -32-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,12,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Tom Steyer,Bernie Sanders -32-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,13,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg -32-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,14,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar -32-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,15,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Elizabeth Warren -32-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,16,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden -32-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,"Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-9,26,1,9,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-10,26,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-11,26,1,11,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-12,26,1,12,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-13,26,1,13,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-14,26,1,14,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-15,26,1,15,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-16,26,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-17,26,1,17,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-18,26,1,18,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-19,26,1,19,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,26-1-20,26,1,20,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-1,24,1,1,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-2,24,1,2,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-3,24,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-4,24,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-5,24,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-6,24,1,6,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-7,24,1,7,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-8,24,1,8,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-9,24,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-10,24,1,10,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-11,24,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-12,24,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-13,24,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-14,24,1,14,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-15,24,1,15,,Precinct 1,Pete Buttigieg,12,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-16,24,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-17,24,1,17,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-18,24,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-19,24,1,19,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,24-1-20,24,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-1,49,1,1,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-2,49,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-3,49,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-4,49,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-5,49,1,5,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-6,49,1,6,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-7,49,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-8,49,1,8,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Tom Steyer,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-9,49,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-10,49,1,10,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-11,49,1,11,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-12,49,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-13,49,1,13,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-14,49,1,14,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-15,49,1,15,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-16,49,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-17,49,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tom Steyer,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-18,49,1,18,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-19,49,1,19,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,49-1-20,49,1,20,,Precinct 1,12,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-1,25,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-2,25,1,2,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-3,25,1,3,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-4,25,1,4,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-5,25,1,5,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-6,25,1,6,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-7,25,1,7,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-8,25,1,8,,Precinct 1,undervote,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-9,25,1,9,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-10,25,1,10,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-11,25,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-12,25,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-13,25,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-14,25,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-15,25,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-16,25,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-17,25,1,17,,Precinct 1,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-18,25,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-19,25,1,19,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,25-1-20,25,1,20,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-1,33,1,1,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-2,33,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-3,33,1,3,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-4,33,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-5,33,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-6,33,1,6,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-7,33,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-8,33,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-9,33,1,9,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-10,33,1,10,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-11,33,1,11,,Precinct 1,Tulsi Gabbard,12,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-12,33,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-13,33,1,13,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-14,33,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-15,33,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-16,33,1,16,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-17,33,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-18,33,1,18,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-19,33,1,19,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,33-1-20,33,1,20,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-1,32,1,1,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-2,32,1,2,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-3,32,1,3,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-4,32,1,4,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-5,32,1,5,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-6,32,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-7,32,1,7,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-8,32,1,8,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-9,32,1,9,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-10,32,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-11,32,1,11,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-12,32,1,12,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Tom Steyer,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-13,32,1,13,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-14,32,1,14,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-15,32,1,15,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-16,32,1,16,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-17,32,1,17,,Precinct 1,Amy Klobuchar,Bernie Sanders,"Tulsi Gabbard Michael R. Bloomberg Pete Buttigieg",Joseph R. Biden,Elizabeth Warren -32-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,18,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar -32-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard -32-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,32,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard -41-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,1,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard -41-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,2,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 -41-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,3,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Joseph R. Biden -41-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,4,,Precinct 1,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders -41-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,5,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 -41-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,6,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg -41-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,7,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg -41-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -41-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,9,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -41-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer -41-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,11,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard -41-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard -41-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,13,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -41-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,14,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -41-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,15,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,12,Amy Klobuchar -41-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,16,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tom Steyer -41-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,17,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Joseph R. Biden -41-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders -41-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,19,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Pete Buttigieg -41-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,41,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Michael R. Bloomberg -23-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,1,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg -23-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders -23-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,3,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,12 -23-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,4,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard -23-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote -23-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,6,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -23-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -23-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,8,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -23-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,9,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Michael R. Bloomberg -23-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -23-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,11,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg -23-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer -23-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,13,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,12 -23-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,14,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden -23-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,15,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Elizabeth Warren -23-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,16,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders -23-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,17,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,12 -23-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,18,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg -23-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,19,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Bernie Sanders,Michael R. Bloomberg -23-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,23,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg -31-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden -31-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,2,,Precinct 1,Elizabeth Warren,12,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar -31-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders -31-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,4,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,12,Amy Klobuchar -31-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,5,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg -31-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,6,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -31-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,7,,Precinct 1,12,Bernie Sanders,Tom Steyer,Joseph R. Biden,Amy Klobuchar -31-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,8,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Bernie Sanders,Elizabeth Warren -31-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,9,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg -31-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,10,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg -31-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders -31-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,12,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Pete Buttigieg -31-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,13,,Precinct 1,12,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg -31-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Tulsi Gabbard -31-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Tom Steyer -31-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,16,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren -31-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12 -31-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,18,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer -31-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,19,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Bernie Sanders -31-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,31,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,12 -22-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,1,,Precinct 1,12,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer -22-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,2,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12,Joseph R. Biden -22-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Tom Steyer -22-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,4,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -22-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,5,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar -22-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote -22-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tom Steyer,Amy Klobuchar -22-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,8,,Precinct 1,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12,Joseph R. Biden -22-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,9,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -22-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,10,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar -22-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders -22-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden -22-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Tulsi Gabbard -22-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders -22-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tom Steyer -22-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,12,Elizabeth Warren,Tom Steyer -22-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard -22-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -22-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,12,Bernie Sanders,Joseph R. Biden -22-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,22,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg -48-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,1,,Precinct 1,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard -48-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,2,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg -48-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,3,,Precinct 1,12,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Tom Steyer -48-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,4,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg -48-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,5,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,12,Elizabeth Warren,Tom Steyer -48-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12 -48-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,7,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg -48-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,8,,Precinct 1,Tom Steyer,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg -48-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Tom Steyer -48-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden -48-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -48-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,12,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard -48-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -48-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg -48-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Bernie Sanders,Tulsi Gabbard -48-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,12,Joseph R. Biden -48-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg -48-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar -48-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,19,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Elizabeth Warren,Amy Klobuchar -48-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,48,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar -21-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,1,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg -21-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Elizabeth Warren -21-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -21-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,4,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar -21-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,5,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -21-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,6,,Precinct 1,Tulsi Gabbard,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg -21-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,7,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Tom Steyer,Michael R. Bloomberg -21-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,8,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg -21-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,9,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Elizabeth Warren -21-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,10,,Precinct 1,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar -21-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Joseph R. Biden -21-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Pete Buttigieg,Tulsi Gabbard -21-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,13,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Joseph R. Biden -21-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,14,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -21-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,15,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12,Pete Buttigieg -21-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer,12 -21-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,17,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -21-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden,Tulsi Gabbard -21-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,19,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Joseph R. Biden -21-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,21,1,20,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders -47-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,1,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar -47-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,2,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,12 -47-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,3,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg -47-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,4,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard -47-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,5,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,12,Amy Klobuchar -47-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Pete Buttigieg -47-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -47-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg -47-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Bernie Sanders -47-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,10,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer,Tulsi Gabbard -47-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -47-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,12 -47-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -47-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer -47-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -47-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Joseph R. Biden -47-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,12 -47-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard -47-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,19,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,12,Tom Steyer -47-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,47,1,20,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Joseph R. Biden,Tom Steyer -17-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,1,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg -17-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Tom Steyer -17-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,3,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12,Bernie Sanders -17-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,4,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden -17-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,5,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer -17-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,6,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12,Joseph R. Biden -17-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -17-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,8,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Amy Klobuchar -17-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,9,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,12,Tom Steyer -17-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,12,Tulsi Gabbard -17-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,11,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -17-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer,12,Amy Klobuchar -17-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg -17-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,14,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden -17-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,15,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -17-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,16,,Precinct 1,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren -17-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,12,Pete Buttigieg -17-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders -17-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,19,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar -17-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,17,1,20,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12 -40-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,1,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard -40-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 -40-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden -40-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer -40-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer -40-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,6,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard -40-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,7,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg -40-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,8,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Amy Klobuchar -40-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,9,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard -40-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -40-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,12,Bernie Sanders -40-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,12,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,12 -40-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -40-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,14,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden -40-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Tom Steyer,Pete Buttigieg -40-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,16,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar -40-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,17,,Precinct 1,Amy Klobuchar,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard -40-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,18,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders -40-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,12,Tulsi Gabbard -40-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,40,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Michael R. Bloomberg,Bernie Sanders -16-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,1,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Amy Klobuchar -16-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,2,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg -16-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,"Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-18,32,1,18,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-19,32,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,32-1-20,32,1,20,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-1,41,1,1,,Precinct 1,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-2,41,1,2,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-3,41,1,3,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-4,41,1,4,,Precinct 1,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-5,41,1,5,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-6,41,1,6,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-7,41,1,7,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-8,41,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-9,41,1,9,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-10,41,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-11,41,1,11,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-12,41,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-13,41,1,13,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-14,41,1,14,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-15,41,1,15,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-16,41,1,16,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-17,41,1,17,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-18,41,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-19,41,1,19,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,41-1-20,41,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-1,23,1,1,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-2,23,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-3,23,1,3,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-4,23,1,4,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-5,23,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-6,23,1,6,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-7,23,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-8,23,1,8,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-9,23,1,9,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-10,23,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-11,23,1,11,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-12,23,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-13,23,1,13,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-14,23,1,14,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-15,23,1,15,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-16,23,1,16,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-17,23,1,17,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-18,23,1,18,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-19,23,1,19,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,23-1-20,23,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-1,31,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-2,31,1,2,,Precinct 1,Elizabeth Warren,12,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-3,31,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-4,31,1,4,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-5,31,1,5,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-6,31,1,6,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-7,31,1,7,,Precinct 1,12,Bernie Sanders,Tom Steyer,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-8,31,1,8,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-9,31,1,9,,Precinct 1,Tom Steyer,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-10,31,1,10,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-11,31,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-12,31,1,12,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-13,31,1,13,,Precinct 1,12,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-14,31,1,14,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-15,31,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-16,31,1,16,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-17,31,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-18,31,1,18,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-19,31,1,19,,Precinct 1,12,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,31-1-20,31,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-1,22,1,1,,Precinct 1,12,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-2,22,1,2,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-3,22,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-4,22,1,4,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-5,22,1,5,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-6,22,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-7,22,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-8,22,1,8,,Precinct 1,Pete Buttigieg,Bernie Sanders,Amy Klobuchar,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-9,22,1,9,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-10,22,1,10,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-11,22,1,11,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-12,22,1,12,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-13,22,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-14,22,1,14,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-15,22,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-16,22,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,12,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-17,22,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-18,22,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-19,22,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,12,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,22-1-20,22,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-1,48,1,1,,Precinct 1,Joseph R. Biden,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-2,48,1,2,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-3,48,1,3,,Precinct 1,12,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-4,48,1,4,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-5,48,1,5,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,12,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-6,48,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-7,48,1,7,,Precinct 1,12,Bernie Sanders,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-8,48,1,8,,Precinct 1,Tom Steyer,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-9,48,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-10,48,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-11,48,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-12,48,1,12,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-13,48,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-14,48,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-15,48,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-16,48,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-17,48,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-18,48,1,18,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-19,48,1,19,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,48-1-20,48,1,20,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-1,21,1,1,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-2,21,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-3,21,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-4,21,1,4,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-5,21,1,5,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-6,21,1,6,,Precinct 1,Tulsi Gabbard,12,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-7,21,1,7,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Bernie Sanders,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-8,21,1,8,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-9,21,1,9,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-10,21,1,10,,Precinct 1,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-11,21,1,11,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-12,21,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-13,21,1,13,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-14,21,1,14,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-15,21,1,15,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-16,21,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-17,21,1,17,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-18,21,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-19,21,1,19,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,12,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,21-1-20,21,1,20,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-1,47,1,1,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-2,47,1,2,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-3,47,1,3,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-4,47,1,4,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-5,47,1,5,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-6,47,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-7,47,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-8,47,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-9,47,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-10,47,1,10,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-11,47,1,11,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-12,47,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-13,47,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-14,47,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-15,47,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-16,47,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-17,47,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-18,47,1,18,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-19,47,1,19,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,47-1-20,47,1,20,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-1,17,1,1,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-2,17,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-3,17,1,3,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-4,17,1,4,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-5,17,1,5,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-6,17,1,6,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-7,17,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-8,17,1,8,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-9,17,1,9,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-10,17,1,10,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-11,17,1,11,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-12,17,1,12,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-13,17,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-14,17,1,14,,Precinct 1,Tulsi Gabbard,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-15,17,1,15,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-16,17,1,16,,Precinct 1,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-17,17,1,17,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-18,17,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-19,17,1,19,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,17-1-20,17,1,20,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-1,40,1,1,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-2,40,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-3,40,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-4,40,1,4,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Amy Klobuchar,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-5,40,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-6,40,1,6,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-7,40,1,7,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-8,40,1,8,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-9,40,1,9,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-10,40,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-11,40,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-12,40,1,12,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-13,40,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-14,40,1,14,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-15,40,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-16,40,1,16,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-17,40,1,17,,Precinct 1,Amy Klobuchar,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-18,40,1,18,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-19,40,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,40-1-20,40,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-1,16,1,1,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-2,16,1,2,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-3,16,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,"Joseph R. Biden Tom Steyer Bernie Sanders Amy Klobuchar Elizabeth Warren 12" -16-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,4,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren -16-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,5,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg -16-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Amy Klobuchar -16-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,12 -16-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,8,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Bernie Sanders -16-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Amy Klobuchar,Pete Buttigieg -16-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12 -16-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote -16-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,12,,Precinct 1,12,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg -16-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,13,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg,Elizabeth Warren -16-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,14,,Precinct 1,12,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Elizabeth Warren -16-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Michael R. Bloomberg,Amy Klobuchar -16-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,16,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Elizabeth Warren -16-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Tulsi Gabbard -16-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,18,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg -16-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard -16-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,16,1,20,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -39-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,1,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Tom Steyer -39-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,2,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Bernie Sanders -39-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,3,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard -39-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,4,,Precinct 1,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar -39-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,5,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Bernie Sanders,Elizabeth Warren -39-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg -39-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Tom Steyer -39-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,8,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Bernie Sanders,Michael R. Bloomberg -39-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders -39-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders,Pete Buttigieg -39-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,12,Amy Klobuchar -39-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote -39-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,13,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer -39-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,14,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren -39-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard -39-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,12,Bernie Sanders -39-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Pete Buttigieg -39-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,18,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg -39-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,19,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Bernie Sanders -39-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,39,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren -38-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,1,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Bernie Sanders -38-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard -38-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,3,,Precinct 1,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden,Elizabeth Warren -38-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,4,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Bernie Sanders,Michael R. Bloomberg -38-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard -38-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -38-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Michael R. Bloomberg,Tom Steyer -38-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,8,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Michael R. Bloomberg -38-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,9,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders -38-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -38-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,11,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren -38-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar -38-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg -38-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,14,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Elizabeth Warren,Joseph R. Biden -38-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar -38-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,16,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer -38-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,12 -38-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,18,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -38-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,19,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -38-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,38,1,20,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard -20-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,1,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden -20-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,2,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -20-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,3,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders -20-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,4,,Precinct 1,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -20-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer -20-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,6,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12 -20-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,7,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,12,Tom Steyer -20-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,8,,Precinct 1,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Joseph R. Biden -20-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard -20-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,10,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg -20-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Elizabeth Warren -20-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,12,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Tom Steyer,Elizabeth Warren -20-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren -20-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,14,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg -20-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg -20-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,16,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12,Tom Steyer -20-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,17,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Pete Buttigieg -20-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar -20-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,19,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg -20-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,20,1,20,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar -37-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,1,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden -37-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,12,Michael R. Bloomberg -37-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -37-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,4,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Elizabeth Warren -37-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,5,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12 -37-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,6,,Precinct 1,12,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar -37-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer -37-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,8,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -37-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote -37-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,10,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,12 -37-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,11,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer -37-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,12 -37-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,13,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Michael R. Bloomberg,Joseph R. Biden -37-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Bernie Sanders -37-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,15,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg -37-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,16,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -37-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,12,Amy Klobuchar -37-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,18,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -37-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,19,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,12 -37-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,37,1,20,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders -15-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,1,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar -15-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,2,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -15-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,3,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg -15-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -15-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg -15-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -15-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,7,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar -15-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,12,Elizabeth Warren -15-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,9,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,"Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-4,16,1,4,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-5,16,1,5,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-6,16,1,6,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-7,16,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-8,16,1,8,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-9,16,1,9,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-10,16,1,10,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-11,16,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-12,16,1,12,,Precinct 1,12,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-13,16,1,13,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-14,16,1,14,,Precinct 1,12,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-15,16,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-16,16,1,16,,Precinct 1,Amy Klobuchar,12,Tom Steyer,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-17,16,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-18,16,1,18,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-19,16,1,19,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,16-1-20,16,1,20,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-1,39,1,1,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-2,39,1,2,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Pete Buttigieg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-3,39,1,3,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-4,39,1,4,,Precinct 1,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-5,39,1,5,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-6,39,1,6,,Precinct 1,Bernie Sanders,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-7,39,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-8,39,1,8,,Precinct 1,Pete Buttigieg,Amy Klobuchar,12,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-9,39,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-10,39,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-11,39,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-12,39,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-13,39,1,13,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-14,39,1,14,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-15,39,1,15,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-16,39,1,16,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tom Steyer,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-17,39,1,17,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-18,39,1,18,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-19,39,1,19,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,39-1-20,39,1,20,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-1,38,1,1,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-2,38,1,2,,Precinct 1,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-3,38,1,3,,Precinct 1,Pete Buttigieg,Bernie Sanders,12,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-4,38,1,4,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,12,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-5,38,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-6,38,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-7,38,1,7,,Precinct 1,Joseph R. Biden,Bernie Sanders,12,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-8,38,1,8,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-9,38,1,9,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-10,38,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-11,38,1,11,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-12,38,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-13,38,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-14,38,1,14,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-15,38,1,15,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-16,38,1,16,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-17,38,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Amy Klobuchar,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-18,38,1,18,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-19,38,1,19,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,38-1-20,38,1,20,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-1,20,1,1,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-2,20,1,2,,Precinct 1,Tom Steyer,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-3,20,1,3,,Precinct 1,Elizabeth Warren,Pete Buttigieg,12,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-4,20,1,4,,Precinct 1,Bernie Sanders,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-5,20,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-6,20,1,6,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-7,20,1,7,,Precinct 1,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-8,20,1,8,,Precinct 1,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-9,20,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-10,20,1,10,,Precinct 1,Pete Buttigieg,12,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-11,20,1,11,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-12,20,1,12,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-13,20,1,13,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-14,20,1,14,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-15,20,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-16,20,1,16,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-17,20,1,17,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-18,20,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-19,20,1,19,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,20-1-20,20,1,20,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-1,37,1,1,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-2,37,1,2,,Precinct 1,Bernie Sanders,Tom Steyer,Tulsi Gabbard,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-3,37,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-4,37,1,4,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-5,37,1,5,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-6,37,1,6,,Precinct 1,12,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-7,37,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-8,37,1,8,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-9,37,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-10,37,1,10,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-11,37,1,11,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-12,37,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-13,37,1,13,,Precinct 1,Elizabeth Warren,Amy Klobuchar,12,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-14,37,1,14,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-15,37,1,15,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-16,37,1,16,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-17,37,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-18,37,1,18,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-19,37,1,19,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,37-1-20,37,1,20,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-1,15,1,1,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-2,15,1,2,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-3,15,1,3,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-4,15,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-5,15,1,5,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-6,15,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-7,15,1,7,,Precinct 1,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-8,15,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-9,15,1,9,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,"Joseph R. Biden Amy Klobuchar Tulsi Gabbard Elizabeth Warren Michael R. Bloomberg Pete Buttigieg 12" -15-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -15-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote -15-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,12,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard -15-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,13,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren -15-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Joseph R. Biden -15-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,15,,Precinct 1,12,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Bernie Sanders -15-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg -15-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,17,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg -15-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,18,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren -15-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,19,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -15-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,15,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden -30-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,1,,Precinct 1,Tulsi Gabbard,Bernie Sanders,12,Joseph R. Biden,Michael R. Bloomberg -30-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,2,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard -30-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Tom Steyer -30-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -30-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,5,,Precinct 1,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 -30-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,6,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders -30-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,7,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Joseph R. Biden,Amy Klobuchar -30-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Elizabeth Warren -30-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer -30-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,10,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Amy Klobuchar -30-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,11,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,12,Bernie Sanders -30-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,12,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden -30-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,13,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Tom Steyer,Bernie Sanders -30-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -30-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -30-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,16,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar -30-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar -30-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,18,,Precinct 1,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren -30-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,19,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer -30-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,30,1,20,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,12 -36-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,1,,Precinct 1,undervote,undervote,undervote,undervote,undervote -36-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,2,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Bernie Sanders,Michael R. Bloomberg -36-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,3,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar -36-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,4,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg -36-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,5,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg -36-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,6,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -36-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,7,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12,Amy Klobuchar -36-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,8,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12,Bernie Sanders -36-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,9,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg -36-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden -36-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote -36-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,12,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar -36-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard -36-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,12,Tom Steyer -36-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote -36-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote -36-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,17,,Precinct 1,Joseph R. Biden,Bernie Sanders,"Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-10,15,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-11,15,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-12,15,1,12,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-13,15,1,13,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-14,15,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-15,15,1,15,,Precinct 1,12,Joseph R. Biden,Michael R. Bloomberg,Tom Steyer,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-16,15,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-17,15,1,17,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-18,15,1,18,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-19,15,1,19,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,15-1-20,15,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-1,30,1,1,,Precinct 1,Tulsi Gabbard,Bernie Sanders,12,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-2,30,1,2,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-3,30,1,3,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-4,30,1,4,,Precinct 1,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-5,30,1,5,,Precinct 1,Joseph R. Biden,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-6,30,1,6,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-7,30,1,7,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-8,30,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-9,30,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-10,30,1,10,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-11,30,1,11,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Tom Steyer,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-12,30,1,12,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-13,30,1,13,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Tom Steyer,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-14,30,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-15,30,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-16,30,1,16,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-17,30,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-18,30,1,18,,Precinct 1,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-19,30,1,19,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,30-1-20,30,1,20,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-1,36,1,1,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-2,36,1,2,,Precinct 1,Joseph R. Biden,Tom Steyer,12,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-3,36,1,3,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-4,36,1,4,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-5,36,1,5,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-6,36,1,6,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-7,36,1,7,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-8,36,1,8,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-9,36,1,9,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-10,36,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-11,36,1,11,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-12,36,1,12,,Precinct 1,Pete Buttigieg,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-13,36,1,13,,Precinct 1,12,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-14,36,1,14,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-15,36,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-16,36,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-17,36,1,17,,Precinct 1,Joseph R. Biden,Bernie Sanders,"Michael R. Bloomberg 12",Pete Buttigieg,Amy Klobuchar -36-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,18,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden -36-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,19,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard -36-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,36,1,20,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders -46-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar -46-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,12 -46-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Elizabeth Warren -46-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,4,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,12,Tulsi Gabbard -46-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tom Steyer -46-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer -46-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden -46-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren -46-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Bernie Sanders -46-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -46-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12 -46-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,12,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden -46-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg -46-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden -46-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Tulsi Gabbard -46-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,16,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -46-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,17,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Bernie Sanders,Amy Klobuchar -46-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,12 -46-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,19,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer -46-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,46,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg -14-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,1,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard -14-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden -14-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg -14-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,4,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg -14-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote -14-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,6,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -14-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Tulsi Gabbard -14-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -14-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Tom Steyer -14-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,10,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar -14-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,12,Tom Steyer -14-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg -14-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,13,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg -14-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,14,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren -14-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Pete Buttigieg,12,Amy Klobuchar -14-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote -14-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard -14-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,18,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 -14-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,19,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 -14-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,14,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,12,Amy Klobuchar -13-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,1,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar -13-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Bernie Sanders -13-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Tom Steyer,Joseph R. Biden -13-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,4,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Joseph R. Biden,Michael R. Bloomberg -13-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,5,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Pete Buttigieg -13-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,6,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard,Bernie Sanders -13-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,7,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,12,Joseph R. Biden,Bernie Sanders -13-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,8,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tulsi Gabbard,Tom Steyer -13-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Bernie Sanders -13-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,10,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -13-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,11,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar -13-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,12 -13-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Michael R. Bloomberg,Elizabeth Warren -13-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden -13-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,15,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard -13-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12 -13-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,17,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders -13-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,12,Bernie Sanders,"Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-18,36,1,18,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-19,36,1,19,,Precinct 1,Amy Klobuchar,Tom Steyer,12,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,36-1-20,36,1,20,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-1,46,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-2,46,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-3,46,1,3,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-4,46,1,4,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-5,46,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-6,46,1,6,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-7,46,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-8,46,1,8,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-9,46,1,9,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-10,46,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-11,46,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-12,46,1,12,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-13,46,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-14,46,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-15,46,1,15,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-16,46,1,16,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-17,46,1,17,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-18,46,1,18,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-19,46,1,19,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,46-1-20,46,1,20,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-1,14,1,1,,Precinct 1,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-2,14,1,2,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-3,14,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-4,14,1,4,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-5,14,1,5,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-6,14,1,6,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-7,14,1,7,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-8,14,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-9,14,1,9,,Precinct 1,Amy Klobuchar,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-10,14,1,10,,Precinct 1,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-11,14,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-12,14,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-13,14,1,13,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-14,14,1,14,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-15,14,1,15,,Precinct 1,Joseph R. Biden,Bernie Sanders,Pete Buttigieg,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-16,14,1,16,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-17,14,1,17,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-18,14,1,18,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-19,14,1,19,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,14-1-20,14,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,12,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-1,13,1,1,,Precinct 1,Joseph R. Biden,12,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-2,13,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-3,13,1,3,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-4,13,1,4,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-5,13,1,5,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-6,13,1,6,,Precinct 1,Joseph R. Biden,12,Tom Steyer,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-7,13,1,7,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,12,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-8,13,1,8,,Precinct 1,Pete Buttigieg,12,Bernie Sanders,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-9,13,1,9,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Tom Steyer,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-10,13,1,10,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-11,13,1,11,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-12,13,1,12,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-13,13,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,12,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-14,13,1,14,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-15,13,1,15,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-16,13,1,16,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-17,13,1,17,,Precinct 1,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-18,13,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,12,Bernie Sanders,"Joseph R. Biden Tom Steyer Bernie Sanders Tulsi Gabbard Elizabeth Warren Michael R. Bloomberg Pete Buttigieg" -13-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,19,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders -13-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,13,1,20,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -29-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,1,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer -29-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,2,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar -29-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -29-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer -29-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,5,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -29-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,6,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,12,Michael R. Bloomberg -29-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,7,,Precinct 1,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar -29-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,8,,Precinct 1,12,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar -29-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,9,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,undervote,12 -29-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer -29-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,11,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg -29-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,12,,Precinct 1,12,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg -29-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Bernie Sanders -29-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,14,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard -29-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,15,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -29-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,16,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard -29-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Bernie Sanders,Elizabeth Warren -29-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,18,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg -29-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,19,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -29-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,29,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg -12-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden -12-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,2,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden,Elizabeth Warren -12-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,3,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar -12-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,4,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg -12-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,5,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg -12-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,6,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,12 -12-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,7,,Precinct 1,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -12-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,Amy Klobuchar,12,Pete Buttigieg -12-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,9,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden -12-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12 -12-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar -12-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,12,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren -12-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -12-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,14,,Precinct 1,Joseph R. Biden,Joseph R. Biden,Pete Buttigieg,Tom Steyer,12 -12-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard -12-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,"Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-19,13,1,19,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,13-1-20,13,1,20,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-1,29,1,1,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-2,29,1,2,,Precinct 1,Pete Buttigieg,Tom Steyer,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-3,29,1,3,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-4,29,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-5,29,1,5,,Precinct 1,12,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-6,29,1,6,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-7,29,1,7,,Precinct 1,Tulsi Gabbard,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-8,29,1,8,,Precinct 1,12,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-9,29,1,9,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,undervote,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-10,29,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-11,29,1,11,,Precinct 1,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-12,29,1,12,,Precinct 1,12,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-13,29,1,13,,Precinct 1,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-14,29,1,14,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-15,29,1,15,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-16,29,1,16,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-17,29,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-18,29,1,18,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-19,29,1,19,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,29-1-20,29,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Amy Klobuchar,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-1,12,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Amy Klobuchar,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-2,12,1,2,,Precinct 1,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-3,12,1,3,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-4,12,1,4,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-5,12,1,5,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-6,12,1,6,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-7,12,1,7,,Precinct 1,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-8,12,1,8,,Precinct 1,Tom Steyer,Joseph R. Biden,Amy Klobuchar,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-9,12,1,9,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,12,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-10,12,1,10,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-11,12,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-12,12,1,12,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-13,12,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-14,12,1,14,,Precinct 1,Joseph R. Biden,Joseph R. Biden,Pete Buttigieg,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-15,12,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-16,12,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,"Amy Klobuchar Pete Buttigieg 12",Michael R. Bloomberg,Joseph R. Biden -12-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar -12-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 -12-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote -12-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,12,1,20,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -35-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden -35-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,2,,Precinct 1,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg -35-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,3,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Amy Klobuchar -35-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -35-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,5,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,12,Elizabeth Warren -35-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,6,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,12,Tulsi Gabbard -35-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,7,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden -35-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,8,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg -35-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,9,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders -35-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12 -35-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar -35-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,12,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg -35-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,13,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg -35-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders -35-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,15,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Pete Buttigieg -35-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,16,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders -35-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,17,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden -35-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,18,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Joseph R. Biden,Tulsi Gabbard -35-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote -35-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,35,1,20,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg -19-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,1,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg -19-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,2,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12 -19-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,3,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 -19-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,4,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg,Bernie Sanders -19-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Amy Klobuchar -19-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 -19-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,7,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Elizabeth Warren -19-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,8,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Pete Buttigieg -19-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,9,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar -19-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,10,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden -19-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,11,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg -19-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden -19-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,13,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden -19-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,14,,Precinct 1,Pete Buttigieg,12,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders -19-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,15,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg -19-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 -19-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,17,,Precinct 1,Tom Steyer,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard -19-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,18,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Bernie Sanders,Pete Buttigieg -19-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar -19-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,19,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Tulsi Gabbard,Elizabeth Warren -11-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,12,Pete Buttigieg -11-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg -11-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren -11-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,4,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg -11-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,5,,Precinct 1,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden -11-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,6,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg -11-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -11-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,8,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Tulsi Gabbard,12 -11-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders -11-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,12,Tulsi Gabbard -11-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders,Tom Steyer -11-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg -11-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,13,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,"Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-17,12,1,17,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-18,12,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-19,12,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,12-1-20,12,1,20,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-1,35,1,1,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-2,35,1,2,,Precinct 1,12,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-3,35,1,3,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-4,35,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-5,35,1,5,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Tom Steyer,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-6,35,1,6,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-7,35,1,7,,Precinct 1,Elizabeth Warren,12,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-8,35,1,8,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-9,35,1,9,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-10,35,1,10,,Precinct 1,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-11,35,1,11,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-12,35,1,12,,Precinct 1,Michael R. Bloomberg,12,Tulsi Gabbard,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-13,35,1,13,,Precinct 1,Elizabeth Warren,12,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-14,35,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-15,35,1,15,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-16,35,1,16,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-17,35,1,17,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-18,35,1,18,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-19,35,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,35-1-20,35,1,20,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-1,19,1,1,,Precinct 1,12,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-2,19,1,2,,Precinct 1,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-3,19,1,3,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-4,19,1,4,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-5,19,1,5,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-6,19,1,6,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-7,19,1,7,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-8,19,1,8,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-9,19,1,9,,Precinct 1,12,Bernie Sanders,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-10,19,1,10,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-11,19,1,11,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-12,19,1,12,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Amy Klobuchar,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-13,19,1,13,,Precinct 1,12,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-14,19,1,14,,Precinct 1,Pete Buttigieg,12,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-15,19,1,15,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-16,19,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-17,19,1,17,,Precinct 1,Tom Steyer,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-18,19,1,18,,Precinct 1,Michael R. Bloomberg,12,Amy Klobuchar,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-19,19,1,19,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,19-1-20,19,1,20,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-1,11,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-2,11,1,2,,Precinct 1,12,Elizabeth Warren,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-3,11,1,3,,Precinct 1,Tulsi Gabbard,Tom Steyer,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-4,11,1,4,,Precinct 1,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-5,11,1,5,,Precinct 1,Bernie Sanders,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-6,11,1,6,,Precinct 1,12,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-7,11,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-8,11,1,8,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-9,11,1,9,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-10,11,1,10,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-11,11,1,11,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-12,11,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Bernie Sanders,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-13,11,1,13,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,"Joseph R. Biden Tom Steyer Bernie Sanders Amy Klobuchar Tulsi Gabbard Michael R. Bloomberg",Elizabeth Warren -11-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -11-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,15,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12,Bernie Sanders -11-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,16,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden -11-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders -11-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,18,,Precinct 1,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden -11-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden -11-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,11,1,20,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg -45-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,1,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders -45-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,2,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Amy Klobuchar -45-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,3,,Precinct 1,12,Tom Steyer,Bernie Sanders,Joseph R. Biden,Pete Buttigieg -45-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,4,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -45-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,5,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden -45-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,6,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders -45-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard -45-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,8,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Amy Klobuchar -45-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,9,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg -45-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,10,,Precinct 1,Tom Steyer,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard -45-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg -45-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders -45-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg -45-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,14,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren -45-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,15,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden -45-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,Bernie Sanders -45-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -45-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,18,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Tulsi Gabbard -45-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,19,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar -45-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,45,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,12,Amy Klobuchar,Joseph R. Biden -27-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,1,,Precinct 1,12,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -27-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,2,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar -27-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -27-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,4,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Elizabeth Warren,12 -27-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,5,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer -27-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden -27-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,7,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tulsi Gabbard,Elizabeth Warren -27-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,8,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders -27-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Amy Klobuchar -27-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,10,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,12 -27-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,11,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer -27-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -27-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,12 -27-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard -27-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12 -27-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg -27-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg -27-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,18,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,12,Tom Steyer -27-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,19,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden -27-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,27,1,20,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer -10-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer -10-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,2,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard,12 -10-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,3,,Precinct 1,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg -10-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,4,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard -10-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders -10-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,6,,Precinct 1,"Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-14,11,1,14,,Precinct 1,Tom Steyer,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-15,11,1,15,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-16,11,1,16,,Precinct 1,Tulsi Gabbard,12,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-17,11,1,17,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-18,11,1,18,,Precinct 1,12,Tom Steyer,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-19,11,1,19,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,11-1-20,11,1,20,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-1,45,1,1,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-2,45,1,2,,Precinct 1,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-3,45,1,3,,Precinct 1,12,Tom Steyer,Bernie Sanders,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-4,45,1,4,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-5,45,1,5,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-6,45,1,6,,Precinct 1,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-7,45,1,7,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-8,45,1,8,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-9,45,1,9,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-10,45,1,10,,Precinct 1,Tom Steyer,Bernie Sanders,12,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-11,45,1,11,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-12,45,1,12,,Precinct 1,Elizabeth Warren,Tom Steyer,Pete Buttigieg,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-13,45,1,13,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-14,45,1,14,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-15,45,1,15,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-16,45,1,16,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-17,45,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-18,45,1,18,,Precinct 1,Bernie Sanders,12,Tom Steyer,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-19,45,1,19,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,45-1-20,45,1,20,,Precinct 1,Tom Steyer,Bernie Sanders,12,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-1,27,1,1,,Precinct 1,12,Pete Buttigieg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-2,27,1,2,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-3,27,1,3,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-4,27,1,4,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tom Steyer,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-5,27,1,5,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-6,27,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-7,27,1,7,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,12,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-8,27,1,8,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-9,27,1,9,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Joseph R. Biden,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-10,27,1,10,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-11,27,1,11,,Precinct 1,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-12,27,1,12,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-13,27,1,13,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-14,27,1,14,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-15,27,1,15,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-16,27,1,16,,Precinct 1,Elizabeth Warren,Tom Steyer,12,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-17,27,1,17,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-18,27,1,18,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Michael R. Bloomberg,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-19,27,1,19,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,27-1-20,27,1,20,,Precinct 1,Michael R. Bloomberg,12,Joseph R. Biden,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-1,10,1,1,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-2,10,1,2,,Precinct 1,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-3,10,1,3,,Precinct 1,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-4,10,1,4,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-5,10,1,5,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Elizabeth Warren,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-6,10,1,6,,Precinct 1,"Joseph R. Biden Tom Steyer Bernie Sanders Amy Klobuchar @@ -784,263 +784,263 @@ Tulsi Gabbard Elizabeth Warren Michael R. Bloomberg Pete Buttigieg",12,Elizabeth Warren,Joseph R. Biden,Bernie Sanders -10-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,7,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tom Steyer,Joseph R. Biden -10-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 -10-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote -10-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,10,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,12 -10-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,12,Pete Buttigieg -10-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,12,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden -10-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,13,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren -10-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,14,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren,Joseph R. Biden -10-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,15,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Amy Klobuchar -10-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,16,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg -10-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,17,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden -10-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,18,,Precinct 1,12,Tom Steyer,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -10-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,19,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Tulsi Gabbard,Elizabeth Warren -10-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,10,1,20,,Precinct 1,12,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tom Steyer -44-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,1,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden -44-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,2,,Precinct 1,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren -44-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,3,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders -44-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,12,Bernie Sanders -44-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,5,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -44-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,6,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard -44-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,7,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden -44-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,8,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden -44-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,9,,Precinct 1,Tom Steyer,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg -44-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg -44-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,11,,Precinct 1,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12,Joseph R. Biden -44-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,12,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer -44-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren -44-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,14,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Bernie Sanders -44-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,15,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,12 -44-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,16,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Amy Klobuchar -44-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,17,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren -44-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,18,,Precinct 1,Bernie Sanders,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg -44-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,19,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden -44-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,44,1,20,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg -1-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren -1-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote -1-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,3,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders -1-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,4,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders -1-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,5,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12 -1-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,6,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -1-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,7,,Precinct 1,Tulsi Gabbard,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren -1-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -1-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Elizabeth Warren -1-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,10,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 -1-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Bernie Sanders,Amy Klobuchar -1-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,12,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -1-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,13,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,12 -1-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,14,,Precinct 1,Joseph R. Biden,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders -1-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg -1-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Bernie Sanders,12 -1-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,17,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden -1-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard -1-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,19,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren -1-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,1,1,20,,Precinct 1,Tulsi Gabbard,Tom Steyer,12,Amy Klobuchar,Joseph R. Biden -43-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,1,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,12 -43-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,2,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tom Steyer -43-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard -43-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,4,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Amy Klobuchar -43-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Joseph R. Biden,Amy Klobuchar -43-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,6,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer -43-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,7,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -43-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote -43-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg -43-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,10,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer -43-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders -43-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,12,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Pete Buttigieg -43-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -43-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote -43-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg -43-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,16,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg -43-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Amy Klobuchar,Elizabeth Warren -43-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar -43-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,19,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren -43-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,43,1,20,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard -9-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,1,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar -9-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer -9-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -9-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote -9-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,5,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg,Bernie Sanders -9-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -9-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,7,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 -9-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,8,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer -9-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,9,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden -9-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg -9-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard -9-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden -9-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,13,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Pete Buttigieg -9-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,14,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden -9-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Tom Steyer -9-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Tulsi Gabbard,12,Michael R. Bloomberg -9-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12 -9-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12 -9-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,19,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg -9-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,9,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,12 -4-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,1,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 -4-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,2,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,12 -4-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,3,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Joseph R. Biden -4-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer -4-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,5,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 -4-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,6,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg -4-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Elizabeth Warren -4-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,8,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren -4-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,9,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders -4-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Tulsi Gabbard,Tom Steyer -4-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,11,,Precinct 1,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12 -4-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg -4-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard -4-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,14,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren -4-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,15,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden -4-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,16,,Precinct 1,12,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders -4-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,17,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -4-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,12 -4-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer -4-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,4,1,20,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 -8-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,1,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar -8-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren -8-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote -8-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders -8-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,5,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,12 -8-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote -8-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,7,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard -8-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg -8-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders -8-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,10,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg -8-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg -8-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,12,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -8-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -8-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,14,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,"Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-7,10,1,7,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-8,10,1,8,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-9,10,1,9,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-10,10,1,10,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-11,10,1,11,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-12,10,1,12,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-13,10,1,13,,Precinct 1,Tom Steyer,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-14,10,1,14,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,12,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-15,10,1,15,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-16,10,1,16,,Precinct 1,Tom Steyer,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-17,10,1,17,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-18,10,1,18,,Precinct 1,12,Tom Steyer,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-19,10,1,19,,Precinct 1,Joseph R. Biden,12,Bernie Sanders,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,10-1-20,10,1,20,,Precinct 1,12,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-1,44,1,1,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-2,44,1,2,,Precinct 1,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-3,44,1,3,,Precinct 1,12,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-4,44,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-5,44,1,5,,Precinct 1,Amy Klobuchar,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-6,44,1,6,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-7,44,1,7,,Precinct 1,12,Tom Steyer,Amy Klobuchar,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-8,44,1,8,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tom Steyer,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-9,44,1,9,,Precinct 1,Tom Steyer,12,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-10,44,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-11,44,1,11,,Precinct 1,Tom Steyer,Elizabeth Warren,Amy Klobuchar,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-12,44,1,12,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-13,44,1,13,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-14,44,1,14,,Precinct 1,12,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-15,44,1,15,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-16,44,1,16,,Precinct 1,12,Bernie Sanders,Tom Steyer,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-17,44,1,17,,Precinct 1,Amy Klobuchar,12,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-18,44,1,18,,Precinct 1,Bernie Sanders,Tom Steyer,12,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-19,44,1,19,,Precinct 1,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,44-1-20,44,1,20,,Precinct 1,Bernie Sanders,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-1,1,1,1,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-2,1,1,2,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-3,1,1,3,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-4,1,1,4,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Elizabeth Warren,Joseph R. Biden,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-5,1,1,5,,Precinct 1,Joseph R. Biden,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-6,1,1,6,,Precinct 1,Amy Klobuchar,12,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-7,1,1,7,,Precinct 1,Tulsi Gabbard,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-8,1,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-9,1,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-10,1,1,10,,Precinct 1,Bernie Sanders,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-11,1,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Tom Steyer,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-12,1,1,12,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-13,1,1,13,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-14,1,1,14,,Precinct 1,Joseph R. Biden,12,Elizabeth Warren,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-15,1,1,15,,Precinct 1,Tom Steyer,Elizabeth Warren,Pete Buttigieg,Joseph R. Biden,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-16,1,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tom Steyer,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-17,1,1,17,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-18,1,1,18,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-19,1,1,19,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,1-1-20,1,1,20,,Precinct 1,Tulsi Gabbard,Tom Steyer,12,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-1,43,1,1,,Precinct 1,Tom Steyer,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-2,43,1,2,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-3,43,1,3,,Precinct 1,12,Joseph R. Biden,Elizabeth Warren,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-4,43,1,4,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-5,43,1,5,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-6,43,1,6,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Elizabeth Warren,Amy Klobuchar,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-7,43,1,7,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-8,43,1,8,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-9,43,1,9,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-10,43,1,10,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-11,43,1,11,,Precinct 1,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-12,43,1,12,,Precinct 1,12,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-13,43,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-14,43,1,14,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-15,43,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-16,43,1,16,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-17,43,1,17,,Precinct 1,Tulsi Gabbard,Tom Steyer,Bernie Sanders,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-18,43,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-19,43,1,19,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,43-1-20,43,1,20,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-1,9,1,1,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-2,9,1,2,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-3,9,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-4,9,1,4,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-5,9,1,5,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,12,Michael R. Bloomberg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-6,9,1,6,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-7,9,1,7,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-8,9,1,8,,Precinct 1,Bernie Sanders,12,Elizabeth Warren,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-9,9,1,9,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-10,9,1,10,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-11,9,1,11,,Precinct 1,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-12,9,1,12,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Bernie Sanders,Elizabeth Warren,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-13,9,1,13,,Precinct 1,12,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-14,9,1,14,,Precinct 1,12,Elizabeth Warren,Tulsi Gabbard,Tom Steyer,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-15,9,1,15,,Precinct 1,Amy Klobuchar,Bernie Sanders,12,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-16,9,1,16,,Precinct 1,Tom Steyer,Bernie Sanders,Tulsi Gabbard,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-17,9,1,17,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Michael R. Bloomberg,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-18,9,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-19,9,1,19,,Precinct 1,12,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,9-1-20,9,1,20,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-1,4,1,1,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Tom Steyer,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-2,4,1,2,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Amy Klobuchar,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-3,4,1,3,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-4,4,1,4,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tulsi Gabbard,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-5,4,1,5,,Precinct 1,Tom Steyer,Amy Klobuchar,Tulsi Gabbard,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-6,4,1,6,,Precinct 1,Joseph R. Biden,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-7,4,1,7,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Bernie Sanders,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-8,4,1,8,,Precinct 1,Tulsi Gabbard,12,Tom Steyer,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-9,4,1,9,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-10,4,1,10,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-11,4,1,11,,Precinct 1,Amy Klobuchar,Tom Steyer,Pete Buttigieg,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-12,4,1,12,,Precinct 1,Tom Steyer,Amy Klobuchar,Joseph R. Biden,Bernie Sanders,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-13,4,1,13,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Joseph R. Biden,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-14,4,1,14,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-15,4,1,15,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-16,4,1,16,,Precinct 1,12,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-17,4,1,17,,Precinct 1,12,Joseph R. Biden,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-18,4,1,18,,Precinct 1,Amy Klobuchar,Tom Steyer,Elizabeth Warren,Tulsi Gabbard,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-19,4,1,19,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,4-1-20,4,1,20,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-1,8,1,1,,Precinct 1,Tom Steyer,12,Michael R. Bloomberg,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-2,8,1,2,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-3,8,1,3,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-4,8,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-5,8,1,5,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-6,8,1,6,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-7,8,1,7,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-8,8,1,8,,Precinct 1,Bernie Sanders,Elizabeth Warren,12,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-9,8,1,9,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-10,8,1,10,,Precinct 1,Elizabeth Warren,12,Pete Buttigieg,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-11,8,1,11,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-12,8,1,12,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-13,8,1,13,,Precinct 1,Joseph R. Biden,Tom Steyer,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-14,8,1,14,,Precinct 1,Tulsi Gabbard,Joseph R. Biden,Elizabeth Warren,"Bernie Sanders Amy Klobuchar",Pete Buttigieg -8-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 -8-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,12 -8-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,17,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,12 -8-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard -8-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote -8-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,8,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg -7-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,1,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren -7-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Pete Buttigieg -7-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,3,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Tulsi Gabbard,Bernie Sanders -7-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,4,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Tom Steyer -7-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Bernie Sanders -7-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,6,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Joseph R. Biden,12 -7-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,12,Tom Steyer -7-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,8,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard -7-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,9,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg -7-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,10,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar -7-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,11,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tom Steyer,Amy Klobuchar -7-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote -7-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,13,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,12 -7-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,14,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren -7-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 -7-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer -7-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Elizabeth Warren -7-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,18,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren -7-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren -7-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,7,1,20,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Pete Buttigieg -28-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,1,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Tom Steyer -28-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,2,,Precinct 1,Tom Steyer,undervote,Elizabeth Warren,Pete Buttigieg,Bernie Sanders -28-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,3,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard -28-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,4,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg -28-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren -28-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,6,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Tulsi Gabbard -28-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 -28-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer -28-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,9,,Precinct 1,Bernie Sanders,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar -28-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote -28-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,11,,Precinct 1,12,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,Amy Klobuchar -28-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote -28-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,13,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren -28-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,14,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg -28-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,15,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer -28-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12,Tulsi Gabbard -28-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,17,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tom Steyer -28-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,12,Bernie Sanders -28-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,19,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Tulsi Gabbard -28-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,28,1,20,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -6-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders -6-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden -6-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,3,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg -6-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer -6-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,5,,Precinct 1,"Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-15,8,1,15,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-16,8,1,16,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-17,8,1,17,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-18,8,1,18,,Precinct 1,Bernie Sanders,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-19,8,1,19,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,8-1-20,8,1,20,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,12,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-1,7,1,1,,Precinct 1,Joseph R. Biden,12,Michael R. Bloomberg,Tulsi Gabbard,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-2,7,1,2,,Precinct 1,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-3,7,1,3,,Precinct 1,Amy Klobuchar,Joseph R. Biden,12,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-4,7,1,4,,Precinct 1,12,Pete Buttigieg,Tulsi Gabbard,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-5,7,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-6,7,1,6,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Bernie Sanders,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-7,7,1,7,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tulsi Gabbard,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-8,7,1,8,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-9,7,1,9,,Precinct 1,Tom Steyer,Tulsi Gabbard,Elizabeth Warren,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-10,7,1,10,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Tulsi Gabbard,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-11,7,1,11,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-12,7,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-13,7,1,13,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Elizabeth Warren,Michael R. Bloomberg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-14,7,1,14,,Precinct 1,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-15,7,1,15,,Precinct 1,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-16,7,1,16,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Michael R. Bloomberg,Bernie Sanders,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-17,7,1,17,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tom Steyer,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-18,7,1,18,,Precinct 1,Joseph R. Biden,12,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-19,7,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,7-1-20,7,1,20,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-1,28,1,1,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Tulsi Gabbard,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-2,28,1,2,,Precinct 1,Tom Steyer,undervote,Elizabeth Warren,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-3,28,1,3,,Precinct 1,Joseph R. Biden,Elizabeth Warren,Michael R. Bloomberg,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-4,28,1,4,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-5,28,1,5,,Precinct 1,Amy Klobuchar,Michael R. Bloomberg,Joseph R. Biden,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-6,28,1,6,,Precinct 1,12,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-7,28,1,7,,Precinct 1,Bernie Sanders,Elizabeth Warren,Tom Steyer,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-8,28,1,8,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,12,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-9,28,1,9,,Precinct 1,Bernie Sanders,12,Tom Steyer,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-10,28,1,10,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-11,28,1,11,,Precinct 1,12,Tulsi Gabbard,Elizabeth Warren,Bernie Sanders,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-12,28,1,12,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-13,28,1,13,,Precinct 1,Tom Steyer,Bernie Sanders,Joseph R. Biden,Michael R. Bloomberg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-14,28,1,14,,Precinct 1,Amy Klobuchar,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-15,28,1,15,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Pete Buttigieg,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-16,28,1,16,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-17,28,1,17,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-18,28,1,18,,Precinct 1,Michael R. Bloomberg,Tom Steyer,Amy Klobuchar,12,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-19,28,1,19,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,12,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,28-1-20,28,1,20,,Precinct 1,Michael R. Bloomberg,Bernie Sanders,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-1,6,1,1,,Precinct 1,Elizabeth Warren,Tom Steyer,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-2,6,1,2,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,12,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-3,6,1,3,,Precinct 1,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Bernie Sanders,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-4,6,1,4,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,12,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-5,6,1,5,,Precinct 1,"Joseph R. Biden Amy Klobuchar Tulsi Gabbard Michael R. Bloomberg Pete Buttigieg 12",Tom Steyer,Elizabeth Warren,Bernie Sanders,Tom Steyer -6-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,6,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,Joseph R. Biden -6-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,7,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,12 -6-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,8,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg -6-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,9,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard -6-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,10,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tom Steyer -6-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,11,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg -6-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,12,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar -6-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,13,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,12,Tom Steyer -6-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg -6-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,15,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Bernie Sanders -6-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,16,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Elizabeth Warren,Tom Steyer -6-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Tom Steyer,Amy Klobuchar -6-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,18,,Precinct 1,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg -6-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,12,Elizabeth Warren -6-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,6,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar -5-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden -5-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar -5-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,3,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12 -5-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,4,,Precinct 1,12,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders -5-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,5,,Precinct 1,12,Michael R. Bloomberg,Tulsi Gabbard,Tom Steyer,Elizabeth Warren -5-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,6,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Amy Klobuchar,Tulsi Gabbard -5-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote -5-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,8,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar -5-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,9,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard -5-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard -5-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,11,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren -5-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,12,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Tulsi Gabbard -5-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,13,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg -5-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,14,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -5-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote -5-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg -5-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,17,,Precinct 1,Bernie Sanders,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 -5-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Tom Steyer,Amy Klobuchar -5-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer -5-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,5,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer -3-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,1,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Bernie Sanders,Joseph R. Biden -3-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,2,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Amy Klobuchar,Michael R. Bloomberg -3-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,3,,Precinct 1,Bernie Sanders,Amy Klobuchar,12,Michael R. Bloomberg,Tom Steyer -3-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 -3-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg -3-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,6,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg -3-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg -3-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,8,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer -3-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,9,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg -3-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,10,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Tom Steyer -3-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,11,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer -3-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,12,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard -3-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote -3-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,14,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden -3-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,15,,Precinct 1,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard -3-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard -3-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,17,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg -3-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,18,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12 -3-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,19,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg,Bernie Sanders -3-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,3,1,20,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Amy Klobuchar -2-1-1,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,1,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren -2-1-2,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,2,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard -2-1-3,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,3,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg -2-1-4,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 -2-1-5,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,5,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg -2-1-6,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,6,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12,Michael R. Bloomberg -2-1-7,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,7,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar -2-1-8,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,8,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg -2-1-9,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders -2-1-10,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,10,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Bernie Sanders -2-1-11,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,11,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren -2-1-12,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden -2-1-13,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,13,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg -2-1-14,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,14,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren -2-1-15,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg -2-1-16,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren -2-1-17,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,17,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden -2-1-18,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12 -2-1-19,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,19,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg -2-1-20,../_shared/dominion_alaska/alaska_input_data,dominion,1,2,1,20,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-6,6,1,6,,Precinct 1,12,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-7,6,1,7,,Precinct 1,Michael R. Bloomberg,Tulsi Gabbard,Bernie Sanders,Joseph R. Biden,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-8,6,1,8,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-9,6,1,9,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,Amy Klobuchar,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-10,6,1,10,,Precinct 1,12,Michael R. Bloomberg,Amy Klobuchar,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-11,6,1,11,,Precinct 1,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-12,6,1,12,,Precinct 1,Tom Steyer,Joseph R. Biden,12,Pete Buttigieg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-13,6,1,13,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Joseph R. Biden,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-14,6,1,14,,Precinct 1,Tulsi Gabbard,Amy Klobuchar,Bernie Sanders,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-15,6,1,15,,Precinct 1,Pete Buttigieg,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-16,6,1,16,,Precinct 1,Joseph R. Biden,12,Pete Buttigieg,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-17,6,1,17,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-18,6,1,18,,Precinct 1,Tulsi Gabbard,12,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-19,6,1,19,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,12,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,6-1-20,6,1,20,,Precinct 1,Pete Buttigieg,Tom Steyer,Joseph R. Biden,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-1,5,1,1,,Precinct 1,Tom Steyer,Tulsi Gabbard,Amy Klobuchar,Pete Buttigieg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-2,5,1,2,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Bernie Sanders,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-3,5,1,3,,Precinct 1,Amy Klobuchar,Pete Buttigieg,Tulsi Gabbard,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-4,5,1,4,,Precinct 1,12,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-5,5,1,5,,Precinct 1,12,Michael R. Bloomberg,Tulsi Gabbard,Tom Steyer,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-6,5,1,6,,Precinct 1,Elizabeth Warren,Michael R. Bloomberg,12,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-7,5,1,7,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-8,5,1,8,,Precinct 1,Tom Steyer,Michael R. Bloomberg,12,Elizabeth Warren,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-9,5,1,9,,Precinct 1,Amy Klobuchar,12,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-10,5,1,10,,Precinct 1,Bernie Sanders,Pete Buttigieg,12,Elizabeth Warren,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-11,5,1,11,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Tom Steyer,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-12,5,1,12,,Precinct 1,Pete Buttigieg,Elizabeth Warren,Tom Steyer,Amy Klobuchar,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-13,5,1,13,,Precinct 1,Pete Buttigieg,Amy Klobuchar,Tulsi Gabbard,Tom Steyer,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-14,5,1,14,,Precinct 1,Tulsi Gabbard,Elizabeth Warren,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-15,5,1,15,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-16,5,1,16,,Precinct 1,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-17,5,1,17,,Precinct 1,Bernie Sanders,Tom Steyer,Pete Buttigieg,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-18,5,1,18,,Precinct 1,Pete Buttigieg,Elizabeth Warren,12,Tom Steyer,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-19,5,1,19,,Precinct 1,Bernie Sanders,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,5-1-20,5,1,20,,Precinct 1,Joseph R. Biden,Pete Buttigieg,Amy Klobuchar,Elizabeth Warren,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-1,3,1,1,,Precinct 1,Amy Klobuchar,Elizabeth Warren,Tom Steyer,Bernie Sanders,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-2,3,1,2,,Precinct 1,Tulsi Gabbard,Pete Buttigieg,12,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-3,3,1,3,,Precinct 1,Bernie Sanders,Amy Klobuchar,12,Michael R. Bloomberg,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-4,3,1,4,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Bernie Sanders,Amy Klobuchar,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-5,3,1,5,,Precinct 1,Pete Buttigieg,Joseph R. Biden,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-6,3,1,6,,Precinct 1,Pete Buttigieg,Joseph R. Biden,12,Elizabeth Warren,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-7,3,1,7,,Precinct 1,Elizabeth Warren,Tulsi Gabbard,Joseph R. Biden,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-8,3,1,8,,Precinct 1,Bernie Sanders,Pete Buttigieg,Tulsi Gabbard,Joseph R. Biden,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-9,3,1,9,,Precinct 1,Joseph R. Biden,Tulsi Gabbard,Tom Steyer,Amy Klobuchar,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-10,3,1,10,,Precinct 1,Elizabeth Warren,Joseph R. Biden,Amy Klobuchar,Tulsi Gabbard,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-11,3,1,11,,Precinct 1,Pete Buttigieg,Tulsi Gabbard,Amy Klobuchar,12,Tom Steyer +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-12,3,1,12,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Joseph R. Biden,Tom Steyer,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-13,3,1,13,,Precinct 1,undervote,undervote,undervote,undervote,undervote +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-14,3,1,14,,Precinct 1,Elizabeth Warren,Bernie Sanders,Pete Buttigieg,Amy Klobuchar,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-15,3,1,15,,Precinct 1,Pete Buttigieg,12,Elizabeth Warren,Joseph R. Biden,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-16,3,1,16,,Precinct 1,Tom Steyer,Amy Klobuchar,Elizabeth Warren,Pete Buttigieg,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-17,3,1,17,,Precinct 1,Michael R. Bloomberg,Amy Klobuchar,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-18,3,1,18,,Precinct 1,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-19,3,1,19,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,12,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,3-1-20,3,1,20,,Precinct 1,Joseph R. Biden,Bernie Sanders,Tom Steyer,Tulsi Gabbard,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-1,2,1,1,,Precinct 1,12,Michael R. Bloomberg,Pete Buttigieg,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-2,2,1,2,,Precinct 1,Elizabeth Warren,Tom Steyer,Joseph R. Biden,Bernie Sanders,Tulsi Gabbard +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-3,2,1,3,,Precinct 1,Bernie Sanders,Michael R. Bloomberg,Elizabeth Warren,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-4,2,1,4,,Precinct 1,Tulsi Gabbard,Bernie Sanders,Elizabeth Warren,Pete Buttigieg,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-5,2,1,5,,Precinct 1,Joseph R. Biden,Michael R. Bloomberg,12,Amy Klobuchar,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-6,2,1,6,,Precinct 1,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,12,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-7,2,1,7,,Precinct 1,12,Joseph R. Biden,Tom Steyer,Michael R. Bloomberg,Amy Klobuchar +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-8,2,1,8,,Precinct 1,Elizabeth Warren,12,Tom Steyer,Tulsi Gabbard,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-9,2,1,9,,Precinct 1,Elizabeth Warren,Amy Klobuchar,Tom Steyer,Tulsi Gabbard,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-10,2,1,10,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg,Bernie Sanders +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-11,2,1,11,,Precinct 1,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Pete Buttigieg,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-12,2,1,12,,Precinct 1,Amy Klobuchar,Bernie Sanders,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-13,2,1,13,,Precinct 1,Tom Steyer,12,Elizabeth Warren,Pete Buttigieg,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-14,2,1,14,,Precinct 1,Tulsi Gabbard,Michael R. Bloomberg,Pete Buttigieg,Joseph R. Biden,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-15,2,1,15,,Precinct 1,Bernie Sanders,Amy Klobuchar,Joseph R. Biden,Tulsi Gabbard,Michael R. Bloomberg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-16,2,1,16,,Precinct 1,Tom Steyer,Pete Buttigieg,12,Bernie Sanders,Elizabeth Warren +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-17,2,1,17,,Precinct 1,12,Bernie Sanders,Amy Klobuchar,Tulsi Gabbard,Joseph R. Biden +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-18,2,1,18,,Precinct 1,Michael R. Bloomberg,Elizabeth Warren,Joseph R. Biden,Tom Steyer,12 +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-19,2,1,19,,Precinct 1,Tom Steyer,Michael R. Bloomberg,Joseph R. Biden,Elizabeth Warren,Pete Buttigieg +../_shared/dominion_alaska/alaska_input_data,dominion,1,2-1-20,2,1,20,,Precinct 1,Michael R. Bloomberg,12,Tom Steyer,Amy Klobuchar,Bernie Sanders diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected_cdf_cvr.json index b662c1bb..e91f23d8 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_dominion/conversions_from_dominion_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "42-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-42-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -63,13 +63,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-42-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "42-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-42-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -128,13 +128,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-42-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "42-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-42-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -193,13 +193,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-42-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "42-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-42-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -258,13 +258,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-42-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "42-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-42-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -273,13 +273,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-42-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "42-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-42-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -338,13 +338,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-42-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "42-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-42-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -403,13 +403,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-42-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "42-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-42-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -468,13 +468,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-42-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "42-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-42-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -533,13 +533,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-42-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "42-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-42-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -598,13 +598,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-42-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "42-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-42-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -663,13 +663,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-42-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "42-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-42-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -728,13 +728,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-42-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "42-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-42-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -793,13 +793,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-42-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "42-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-42-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -858,13 +858,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-42-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "42-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-42-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -923,13 +923,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-42-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "42-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-42-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -988,13 +988,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-42-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "42-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-42-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1053,13 +1053,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-42-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "42-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-42-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1118,13 +1118,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-42-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "42-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-42-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1183,13 +1183,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-42-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "42-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-42-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1248,13 +1248,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-42-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "34-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-34-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1313,13 +1313,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-34-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "34-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-34-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1328,13 +1328,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-34-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "34-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-34-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1393,13 +1393,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-34-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "34-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-34-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1458,13 +1458,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-34-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "34-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-34-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1523,13 +1523,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-34-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "34-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-34-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1538,13 +1538,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-34-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "34-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-34-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1603,13 +1603,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-34-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "34-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-34-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1668,13 +1668,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-34-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "34-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-34-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1733,13 +1733,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-34-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "34-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-34-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1798,13 +1798,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-34-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "34-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-34-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1863,13 +1863,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-34-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "34-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-34-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1928,13 +1928,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-34-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "34-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-34-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1993,13 +1993,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-34-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "34-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-34-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2058,13 +2058,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-34-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "34-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-34-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2123,13 +2123,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-34-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "34-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-34-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2138,13 +2138,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-34-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "34-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-34-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2203,13 +2203,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-34-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "34-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-34-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2268,13 +2268,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-34-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "34-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-34-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2333,13 +2333,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-34-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "34-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-34-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2398,13 +2398,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-34-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "50-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-50-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2463,13 +2463,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-50-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "50-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-50-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2528,13 +2528,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-50-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "50-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-50-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2593,13 +2593,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-50-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "50-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-50-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2658,13 +2658,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-50-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "50-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-50-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2723,13 +2723,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-50-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "50-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-50-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2788,13 +2788,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-50-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "50-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-50-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2853,13 +2853,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-50-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "50-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-50-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2918,13 +2918,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-50-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "50-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-50-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2983,13 +2983,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-50-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "50-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-50-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3048,13 +3048,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-50-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "50-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-50-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3113,13 +3113,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-50-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "50-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-50-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3178,13 +3178,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-50-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "50-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-50-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3243,13 +3243,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-50-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "50-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-50-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3258,13 +3258,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-50-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "50-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-50-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3323,13 +3323,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-50-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "50-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-50-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3388,13 +3388,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-50-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "50-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-50-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3453,13 +3453,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-50-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "50-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-50-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3518,13 +3518,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-50-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "50-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-50-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3583,13 +3583,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-50-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "50-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-50-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3648,13 +3648,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-50-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "18-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-18-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3713,13 +3713,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-18-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "18-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-18-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3778,13 +3778,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-18-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "18-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-18-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3843,13 +3843,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-18-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "18-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-18-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3908,13 +3908,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-18-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "18-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-18-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3973,13 +3973,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-18-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "18-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-18-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4038,13 +4038,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-18-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "18-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-18-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4103,13 +4103,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-18-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "18-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-18-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4168,13 +4168,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-18-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "18-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-18-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4233,13 +4233,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-18-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "18-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-18-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4298,13 +4298,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-18-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "18-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-18-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4363,13 +4363,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-18-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "18-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-18-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4428,13 +4428,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-18-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "18-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-18-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4493,13 +4493,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-18-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "18-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-18-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4558,13 +4558,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-18-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "18-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-18-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4623,13 +4623,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-18-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "18-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-18-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4688,13 +4688,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-18-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "18-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-18-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4753,13 +4753,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-18-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "18-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-18-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4818,13 +4818,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-18-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "18-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-18-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4883,13 +4883,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-18-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "18-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-18-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4948,13 +4948,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-18-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "26-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-26-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5013,13 +5013,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-26-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "26-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-26-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5078,13 +5078,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-26-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "26-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-26-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5143,13 +5143,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-26-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "26-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-26-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5208,13 +5208,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-26-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "26-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-26-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5273,13 +5273,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-26-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "26-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-26-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5338,13 +5338,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-26-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "26-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-26-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5399,13 +5399,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-26-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "26-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-26-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5510,13 +5510,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-26-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "26-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-26-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5575,13 +5575,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-26-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "26-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-26-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5640,13 +5640,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-26-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "26-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-26-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5705,13 +5705,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-26-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "26-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-26-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5770,13 +5770,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-26-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "26-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-26-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5835,13 +5835,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-26-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "26-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-26-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5900,13 +5900,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-26-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "26-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-26-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5965,13 +5965,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-26-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "26-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-26-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6030,13 +6030,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-26-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "26-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-26-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6095,13 +6095,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-26-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "26-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-26-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6160,13 +6160,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-26-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "26-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-26-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6225,13 +6225,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-26-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "26-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-26-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6240,13 +6240,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-26-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "24-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-24-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6305,13 +6305,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-24-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "24-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-24-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6370,13 +6370,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-24-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "24-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-24-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6435,13 +6435,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-24-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "24-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-24-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6500,13 +6500,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-24-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "24-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-24-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6565,13 +6565,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-24-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "24-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-24-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6630,13 +6630,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-24-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "24-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-24-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6695,13 +6695,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-24-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "24-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-24-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6760,13 +6760,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-24-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "24-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-24-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6825,13 +6825,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-24-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "24-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-24-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6890,13 +6890,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-24-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "24-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-24-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6955,13 +6955,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-24-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "24-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-24-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7020,13 +7020,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-24-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "24-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-24-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7085,13 +7085,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-24-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "24-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-24-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7150,13 +7150,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-24-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "24-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-24-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7215,13 +7215,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-24-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "24-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-24-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7280,13 +7280,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-24-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "24-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-24-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7345,13 +7345,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-24-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "24-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-24-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7410,13 +7410,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-24-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "24-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-24-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7475,13 +7475,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-24-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "24-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-24-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7540,13 +7540,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-24-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "49-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-49-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7605,13 +7605,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-49-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "49-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-49-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7670,13 +7670,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-49-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "49-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-49-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7735,13 +7735,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-49-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "49-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-49-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7750,13 +7750,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-49-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "49-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-49-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7815,13 +7815,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-49-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "49-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-49-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7880,13 +7880,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-49-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "49-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-49-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7945,13 +7945,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-49-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "49-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-49-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8010,13 +8010,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-49-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "49-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-49-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8075,13 +8075,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-49-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "49-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-49-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8140,13 +8140,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-49-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "49-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-49-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8205,13 +8205,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-49-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "49-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-49-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8270,13 +8270,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-49-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "49-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-49-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8335,13 +8335,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-49-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "49-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-49-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8400,13 +8400,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-49-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "49-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-49-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8465,13 +8465,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-49-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "49-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-49-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8530,13 +8530,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-49-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "49-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-49-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8595,13 +8595,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-49-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "49-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-49-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8660,13 +8660,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-49-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "49-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-49-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8725,13 +8725,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-49-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "49-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-49-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8790,13 +8790,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-49-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "25-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-25-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8855,13 +8855,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-25-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "25-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-25-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8920,13 +8920,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-25-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "25-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-25-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8985,13 +8985,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-25-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "25-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-25-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9050,13 +9050,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-25-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "25-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-25-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9115,13 +9115,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-25-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "25-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-25-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9180,13 +9180,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-25-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "25-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-25-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9245,13 +9245,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-25-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "25-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-25-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9300,13 +9300,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-25-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "25-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-25-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9365,13 +9365,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-25-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "25-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-25-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9430,13 +9430,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-25-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "25-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-25-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9495,13 +9495,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-25-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "25-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-25-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9560,13 +9560,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-25-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "25-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-25-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9625,13 +9625,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-25-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "25-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-25-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9690,13 +9690,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-25-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "25-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-25-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9705,13 +9705,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-25-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "25-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-25-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9770,13 +9770,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-25-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "25-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-25-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9835,13 +9835,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-25-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "25-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-25-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9900,13 +9900,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-25-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "25-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-25-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9965,13 +9965,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-25-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "25-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-25-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10030,13 +10030,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-25-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "33-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-33-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10095,13 +10095,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-33-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "33-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-33-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10160,13 +10160,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-33-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "33-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-33-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10225,13 +10225,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-33-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "33-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-33-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10240,13 +10240,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-33-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "33-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-33-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10305,13 +10305,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-33-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "33-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-33-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10370,13 +10370,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-33-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "33-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-33-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10435,13 +10435,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-33-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "33-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-33-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10500,13 +10500,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-33-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "33-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-33-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10565,13 +10565,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-33-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "33-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-33-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10630,13 +10630,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-33-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "33-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-33-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10695,13 +10695,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-33-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "33-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-33-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10760,13 +10760,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-33-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "33-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-33-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10825,13 +10825,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-33-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "33-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-33-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10890,13 +10890,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-33-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "33-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-33-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10955,13 +10955,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-33-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "33-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-33-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11020,13 +11020,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-33-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "33-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-33-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11085,13 +11085,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-33-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "33-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-33-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11150,13 +11150,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-33-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "33-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-33-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11215,13 +11215,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-33-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "33-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-33-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11280,13 +11280,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-33-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "32-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-32-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11345,13 +11345,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-32-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "32-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-32-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11410,13 +11410,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-32-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "32-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-32-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11475,13 +11475,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-32-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "32-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-32-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11540,13 +11540,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-32-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "32-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-32-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11605,13 +11605,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-32-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "32-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-32-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11670,13 +11670,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-32-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "32-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-32-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11735,13 +11735,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-32-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "32-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-32-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11800,13 +11800,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-32-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "32-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-32-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11865,13 +11865,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-32-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "32-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-32-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11930,13 +11930,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-32-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "32-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-32-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11995,13 +11995,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-32-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "32-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-32-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12060,13 +12060,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-32-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "32-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-32-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12125,13 +12125,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-32-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "32-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-32-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12190,13 +12190,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-32-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "32-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-32-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12255,13 +12255,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-32-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "32-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-32-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12320,13 +12320,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-32-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "32-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-32-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12405,13 +12405,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-32-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "32-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-32-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12470,13 +12470,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-32-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "32-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-32-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12535,13 +12535,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-32-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "32-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-32-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12600,13 +12600,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-32-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "41-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-41-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12665,13 +12665,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-41-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "41-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-41-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12730,13 +12730,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-41-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "41-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-41-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12795,13 +12795,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-41-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "41-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-41-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12860,13 +12860,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-41-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "41-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-41-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12925,13 +12925,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-41-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "41-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-41-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -12990,13 +12990,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-41-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "41-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-41-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13055,13 +13055,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-41-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "41-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-41-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13070,13 +13070,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-41-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "41-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-41-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13135,13 +13135,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-41-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "41-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-41-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13200,13 +13200,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-41-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "41-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-41-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13265,13 +13265,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-41-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "41-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-41-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13330,13 +13330,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-41-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "41-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-41-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13395,13 +13395,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-41-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "41-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-41-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13460,13 +13460,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-41-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "41-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-41-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13525,13 +13525,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-41-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "41-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-41-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13590,13 +13590,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-41-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "41-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-41-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13655,13 +13655,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-41-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "41-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-41-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13720,13 +13720,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-41-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "41-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-41-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13785,13 +13785,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-41-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "41-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-41-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13850,13 +13850,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-41-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "23-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-23-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13915,13 +13915,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-23-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "23-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-23-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -13980,13 +13980,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-23-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "23-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-23-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14045,13 +14045,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-23-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "23-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-23-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14110,13 +14110,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-23-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "23-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-23-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14125,13 +14125,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-23-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "23-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-23-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14190,13 +14190,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-23-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "23-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-23-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14255,13 +14255,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-23-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "23-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-23-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14320,13 +14320,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-23-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "23-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-23-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14385,13 +14385,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-23-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "23-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-23-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14400,13 +14400,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-23-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "23-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-23-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14465,13 +14465,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-23-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "23-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-23-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14530,13 +14530,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-23-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "23-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-23-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14595,13 +14595,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-23-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "23-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-23-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14660,13 +14660,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-23-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "23-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-23-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14725,13 +14725,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-23-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "23-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-23-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14790,13 +14790,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-23-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "23-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-23-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14855,13 +14855,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-23-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "23-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-23-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14920,13 +14920,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-23-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "23-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-23-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -14985,13 +14985,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-23-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "23-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-23-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15050,13 +15050,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-23-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "31-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-31-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15115,13 +15115,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-31-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "31-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-31-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15180,13 +15180,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-31-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "31-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-31-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15245,13 +15245,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-31-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "31-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-31-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15310,13 +15310,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-31-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "31-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-31-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15375,13 +15375,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-31-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "31-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-31-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15440,13 +15440,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-31-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "31-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-31-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15505,13 +15505,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-31-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "31-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-31-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15570,13 +15570,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-31-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "31-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-31-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15635,13 +15635,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-31-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "31-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-31-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15700,13 +15700,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-31-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "31-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-31-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15765,13 +15765,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-31-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "31-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-31-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15830,13 +15830,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-31-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "31-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-31-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15895,13 +15895,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-31-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "31-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-31-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -15960,13 +15960,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-31-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "31-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-31-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16025,13 +16025,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-31-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "31-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-31-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16090,13 +16090,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-31-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "31-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-31-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16155,13 +16155,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-31-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "31-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-31-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16220,13 +16220,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-31-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "31-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-31-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16285,13 +16285,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-31-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "31-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-31-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16350,13 +16350,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-31-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "22-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-22-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16415,13 +16415,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-22-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "22-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-22-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16480,13 +16480,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-22-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "22-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-22-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16545,13 +16545,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-22-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "22-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-22-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16610,13 +16610,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-22-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "22-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-22-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16675,13 +16675,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-22-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "22-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-22-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16690,13 +16690,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-22-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "22-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-22-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16755,13 +16755,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-22-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "22-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-22-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16820,13 +16820,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-22-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "22-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-22-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16885,13 +16885,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-22-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "22-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-22-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -16950,13 +16950,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-22-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "22-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-22-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17015,13 +17015,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-22-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "22-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-22-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17080,13 +17080,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-22-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "22-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-22-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17145,13 +17145,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-22-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "22-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-22-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17210,13 +17210,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-22-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "22-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-22-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17275,13 +17275,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-22-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "22-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-22-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17340,13 +17340,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-22-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "22-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-22-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17405,13 +17405,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-22-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "22-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-22-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17470,13 +17470,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-22-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "22-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-22-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17535,13 +17535,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-22-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "22-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-22-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17600,13 +17600,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-22-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "48-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-48-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17665,13 +17665,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-48-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "48-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-48-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17730,13 +17730,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-48-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "48-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-48-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17795,13 +17795,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-48-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "48-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-48-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17860,13 +17860,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-48-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "48-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-48-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17925,13 +17925,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-48-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "48-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-48-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -17990,13 +17990,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-48-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "48-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-48-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18055,13 +18055,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-48-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "48-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-48-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18120,13 +18120,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-48-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "48-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-48-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18185,13 +18185,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-48-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "48-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-48-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18250,13 +18250,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-48-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "48-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-48-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18315,13 +18315,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-48-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "48-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-48-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18380,13 +18380,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-48-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "48-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-48-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18445,13 +18445,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-48-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "48-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-48-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18510,13 +18510,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-48-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "48-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-48-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18575,13 +18575,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-48-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "48-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-48-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18640,13 +18640,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-48-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "48-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-48-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18705,13 +18705,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-48-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "48-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-48-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18770,13 +18770,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-48-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "48-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-48-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18835,13 +18835,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-48-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "48-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-48-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18900,13 +18900,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-48-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "21-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-21-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -18965,13 +18965,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-21-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "21-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-21-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19030,13 +19030,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-21-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "21-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-21-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19045,13 +19045,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-21-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "21-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-21-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19110,13 +19110,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-21-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "21-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-21-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19175,13 +19175,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-21-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "21-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-21-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19240,13 +19240,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-21-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "21-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-21-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19305,13 +19305,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-21-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "21-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-21-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19370,13 +19370,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-21-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "21-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-21-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19435,13 +19435,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-21-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "21-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-21-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19500,13 +19500,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-21-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "21-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-21-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19565,13 +19565,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-21-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "21-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-21-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19630,13 +19630,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-21-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "21-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-21-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19695,13 +19695,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-21-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "21-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-21-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19760,13 +19760,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-21-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "21-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-21-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19825,13 +19825,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-21-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "21-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-21-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19890,13 +19890,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-21-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "21-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-21-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -19955,13 +19955,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-21-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "21-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-21-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20020,13 +20020,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-21-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "21-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-21-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20085,13 +20085,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-21-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "21-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-21-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20150,13 +20150,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-21-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "47-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-47-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20215,13 +20215,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-47-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "47-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-47-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20280,13 +20280,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-47-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "47-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-47-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20345,13 +20345,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-47-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "47-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-47-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20410,13 +20410,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-47-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "47-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-47-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20475,13 +20475,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-47-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "47-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-47-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20540,13 +20540,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-47-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "47-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-47-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20555,13 +20555,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-47-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "47-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-47-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20620,13 +20620,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-47-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "47-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-47-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20685,13 +20685,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-47-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "47-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-47-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20750,13 +20750,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-47-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "47-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-47-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20815,13 +20815,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-47-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "47-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-47-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20880,13 +20880,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-47-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "47-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-47-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20895,13 +20895,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-47-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "47-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-47-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -20960,13 +20960,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-47-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "47-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-47-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21025,13 +21025,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-47-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "47-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-47-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21090,13 +21090,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-47-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "47-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-47-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21155,13 +21155,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-47-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "47-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-47-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21220,13 +21220,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-47-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "47-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-47-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21285,13 +21285,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-47-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "47-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-47-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21350,13 +21350,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-47-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "17-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-17-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21415,13 +21415,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-17-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "17-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-17-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21480,13 +21480,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-17-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "17-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-17-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21545,13 +21545,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-17-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "17-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-17-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21610,13 +21610,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-17-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "17-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-17-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21675,13 +21675,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-17-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "17-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-17-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21740,13 +21740,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-17-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "17-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-17-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21755,13 +21755,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-17-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "17-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-17-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21820,13 +21820,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-17-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "17-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-17-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21885,13 +21885,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-17-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "17-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-17-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -21950,13 +21950,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-17-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "17-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-17-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22015,13 +22015,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-17-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "17-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-17-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22080,13 +22080,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-17-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "17-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-17-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22145,13 +22145,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-17-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "17-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-17-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22210,13 +22210,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-17-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "17-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-17-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22275,13 +22275,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-17-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "17-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-17-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22340,13 +22340,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-17-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "17-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-17-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22405,13 +22405,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-17-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "17-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-17-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22470,13 +22470,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-17-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "17-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-17-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22535,13 +22535,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-17-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "17-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-17-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22600,13 +22600,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-17-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "40-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-40-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22665,13 +22665,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-40-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "40-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-40-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22730,13 +22730,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-40-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "40-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-40-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22795,13 +22795,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-40-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "40-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-40-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22860,13 +22860,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-40-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "40-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-40-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22925,13 +22925,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-40-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "40-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-40-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -22990,13 +22990,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-40-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "40-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-40-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23055,13 +23055,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-40-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "40-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-40-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23120,13 +23120,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-40-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "40-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-40-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23185,13 +23185,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-40-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "40-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-40-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23200,13 +23200,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-40-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "40-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-40-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23265,13 +23265,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-40-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "40-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-40-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23330,13 +23330,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-40-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "40-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-40-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23345,13 +23345,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-40-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "40-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-40-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23410,13 +23410,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-40-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "40-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-40-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23475,13 +23475,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-40-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "40-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-40-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23540,13 +23540,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-40-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "40-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-40-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23605,13 +23605,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-40-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "40-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-40-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23670,13 +23670,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-40-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "40-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-40-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23735,13 +23735,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-40-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "40-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-40-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23800,13 +23800,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-40-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "16-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-16-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23865,13 +23865,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-16-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "16-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-16-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -23930,13 +23930,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-16-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "16-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-16-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24041,13 +24041,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-16-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "16-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-16-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24106,13 +24106,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-16-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "16-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-16-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24171,13 +24171,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-16-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "16-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-16-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24236,13 +24236,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-16-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "16-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-16-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24301,13 +24301,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-16-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "16-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-16-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24366,13 +24366,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-16-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "16-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-16-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24431,13 +24431,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-16-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "16-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-16-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24496,13 +24496,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-16-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "16-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-16-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24511,13 +24511,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-16-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "16-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-16-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24576,13 +24576,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-16-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "16-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-16-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24641,13 +24641,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-16-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "16-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-16-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24706,13 +24706,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-16-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "16-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-16-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24771,13 +24771,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-16-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "16-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-16-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24836,13 +24836,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-16-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "16-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-16-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24901,13 +24901,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-16-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "16-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-16-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -24966,13 +24966,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-16-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "16-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-16-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25031,13 +25031,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-16-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "16-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-16-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25096,13 +25096,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-16-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "39-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-39-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25161,13 +25161,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-39-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "39-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-39-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25226,13 +25226,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-39-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "39-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-39-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25291,13 +25291,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-39-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "39-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-39-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25356,13 +25356,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-39-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "39-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-39-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25421,13 +25421,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-39-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "39-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-39-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25486,13 +25486,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-39-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "39-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-39-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25551,13 +25551,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-39-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "39-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-39-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25616,13 +25616,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-39-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "39-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-39-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25681,13 +25681,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-39-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "39-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-39-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25746,13 +25746,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-39-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "39-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-39-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25811,13 +25811,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-39-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "39-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-39-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25826,13 +25826,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-39-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "39-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-39-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25891,13 +25891,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-39-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "39-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-39-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -25956,13 +25956,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-39-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "39-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-39-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26021,13 +26021,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-39-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "39-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-39-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26086,13 +26086,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-39-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "39-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-39-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26151,13 +26151,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-39-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "39-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-39-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26216,13 +26216,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-39-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "39-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-39-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26281,13 +26281,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-39-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "39-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-39-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26346,13 +26346,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-39-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "38-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-38-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26411,13 +26411,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-38-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "38-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-38-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26476,13 +26476,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-38-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "38-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-38-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26541,13 +26541,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-38-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "38-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-38-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26606,13 +26606,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-38-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "38-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-38-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26671,13 +26671,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-38-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "38-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-38-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26736,13 +26736,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-38-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "38-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-38-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26801,13 +26801,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-38-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "38-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-38-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26866,13 +26866,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-38-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "38-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-38-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26931,13 +26931,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-38-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "38-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-38-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -26946,13 +26946,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-38-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "38-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-38-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27011,13 +27011,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-38-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "38-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-38-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27076,13 +27076,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-38-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "38-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-38-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27141,13 +27141,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-38-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "38-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-38-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27206,13 +27206,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-38-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "38-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-38-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27271,13 +27271,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-38-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "38-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-38-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27336,13 +27336,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-38-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "38-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-38-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27401,13 +27401,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-38-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "38-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-38-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27466,13 +27466,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-38-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "38-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-38-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27531,13 +27531,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-38-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "38-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-38-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27596,13 +27596,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-38-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "20-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-20-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27661,13 +27661,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-20-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "20-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-20-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27726,13 +27726,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-20-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "20-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-20-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27791,13 +27791,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-20-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "20-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-20-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27856,13 +27856,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-20-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "20-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-20-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27921,13 +27921,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-20-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "20-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-20-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -27986,13 +27986,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-20-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "20-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-20-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28051,13 +28051,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-20-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "20-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-20-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28116,13 +28116,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-20-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "20-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-20-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28181,13 +28181,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-20-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "20-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-20-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28246,13 +28246,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-20-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "20-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-20-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28311,13 +28311,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-20-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "20-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-20-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28376,13 +28376,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-20-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "20-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-20-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28441,13 +28441,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-20-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "20-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-20-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28506,13 +28506,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-20-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "20-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-20-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28571,13 +28571,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-20-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "20-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-20-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28636,13 +28636,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-20-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "20-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-20-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28701,13 +28701,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-20-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "20-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-20-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28766,13 +28766,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-20-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "20-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-20-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28831,13 +28831,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-20-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "20-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-20-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28896,13 +28896,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-20-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "37-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-37-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -28961,13 +28961,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-37-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "37-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-37-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29026,13 +29026,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-37-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "37-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-37-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29041,13 +29041,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-37-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "37-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-37-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29106,13 +29106,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-37-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "37-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-37-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29171,13 +29171,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-37-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "37-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-37-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29236,13 +29236,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-37-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "37-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-37-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29301,13 +29301,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-37-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "37-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-37-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29366,13 +29366,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-37-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "37-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-37-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29381,13 +29381,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-37-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "37-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-37-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29446,13 +29446,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-37-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "37-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-37-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29511,13 +29511,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-37-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "37-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-37-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29576,13 +29576,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-37-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "37-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-37-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29641,13 +29641,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-37-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "37-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-37-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29706,13 +29706,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-37-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "37-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-37-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29771,13 +29771,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-37-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "37-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-37-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29836,13 +29836,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-37-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "37-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-37-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29901,13 +29901,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-37-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "37-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-37-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -29966,13 +29966,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-37-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "37-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-37-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30031,13 +30031,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-37-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "37-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-37-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30096,13 +30096,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-37-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "15-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-15-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30161,13 +30161,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-15-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "15-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-15-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30226,13 +30226,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-15-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "15-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-15-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30291,13 +30291,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-15-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "15-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-15-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30306,13 +30306,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-15-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "15-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-15-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30371,13 +30371,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-15-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "15-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-15-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30436,13 +30436,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-15-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "15-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-15-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30501,13 +30501,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-15-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "15-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-15-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30566,13 +30566,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-15-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "15-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-15-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30683,13 +30683,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-15-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "15-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-15-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30698,13 +30698,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-15-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "15-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-15-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30713,13 +30713,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-15-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "15-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-15-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30778,13 +30778,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-15-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "15-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-15-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30843,13 +30843,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-15-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "15-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-15-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30908,13 +30908,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-15-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "15-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-15-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -30973,13 +30973,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-15-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "15-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-15-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31038,13 +31038,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-15-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "15-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-15-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31103,13 +31103,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-15-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "15-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-15-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31168,13 +31168,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-15-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "15-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-15-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31233,13 +31233,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-15-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "15-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-15-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31298,13 +31298,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-15-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "30-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-30-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31363,13 +31363,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-30-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "30-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-30-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31428,13 +31428,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-30-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "30-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-30-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31493,13 +31493,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-30-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "30-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-30-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31558,13 +31558,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-30-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "30-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-30-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31623,13 +31623,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-30-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "30-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-30-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31688,13 +31688,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-30-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "30-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-30-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31753,13 +31753,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-30-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "30-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-30-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31818,13 +31818,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-30-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "30-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-30-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31883,13 +31883,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-30-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "30-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-30-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -31948,13 +31948,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-30-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "30-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-30-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32013,13 +32013,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-30-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "30-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-30-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32078,13 +32078,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-30-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "30-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-30-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32143,13 +32143,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-30-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "30-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-30-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32208,13 +32208,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-30-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "30-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-30-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32273,13 +32273,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-30-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "30-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-30-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32338,13 +32338,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-30-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "30-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-30-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32403,13 +32403,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-30-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "30-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-30-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32468,13 +32468,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-30-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "30-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-30-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32533,13 +32533,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-30-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "30-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-30-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32598,13 +32598,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-30-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "36-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-36-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32613,13 +32613,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-36-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "36-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-36-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32678,13 +32678,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-36-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "36-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-36-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32743,13 +32743,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-36-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "36-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-36-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32808,13 +32808,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-36-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "36-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-36-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32873,13 +32873,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-36-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "36-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-36-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -32938,13 +32938,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-36-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "36-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-36-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33003,13 +33003,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-36-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "36-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-36-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33068,13 +33068,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-36-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "36-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-36-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33133,13 +33133,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-36-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "36-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-36-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33198,13 +33198,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-36-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "36-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-36-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33213,13 +33213,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-36-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "36-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-36-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33278,13 +33278,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-36-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "36-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-36-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33343,13 +33343,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-36-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "36-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-36-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33408,13 +33408,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-36-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "36-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-36-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33423,13 +33423,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-36-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "36-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-36-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33438,13 +33438,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-36-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "36-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-36-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33513,13 +33513,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-36-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "36-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-36-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33578,13 +33578,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-36-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "36-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-36-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33643,13 +33643,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-36-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "36-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-36-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33708,13 +33708,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-36-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "46-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-46-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33773,13 +33773,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-46-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "46-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-46-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33838,13 +33838,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-46-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "46-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-46-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33903,13 +33903,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-46-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "46-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-46-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33968,13 +33968,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-46-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "46-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-46-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34033,13 +34033,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-46-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "46-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-46-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34098,13 +34098,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-46-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "46-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-46-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34163,13 +34163,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-46-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "46-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-46-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34228,13 +34228,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-46-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "46-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-46-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34293,13 +34293,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-46-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "46-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-46-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34308,13 +34308,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-46-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "46-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-46-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34373,13 +34373,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-46-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "46-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-46-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34438,13 +34438,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-46-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "46-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-46-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34503,13 +34503,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-46-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "46-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-46-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34568,13 +34568,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-46-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "46-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-46-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34633,13 +34633,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-46-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "46-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-46-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34698,13 +34698,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-46-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "46-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-46-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34763,13 +34763,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-46-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "46-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-46-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34828,13 +34828,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-46-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "46-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-46-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34893,13 +34893,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-46-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "46-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-46-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -34958,13 +34958,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-46-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "14-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-14-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35023,13 +35023,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-14-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "14-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-14-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35088,13 +35088,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-14-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "14-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-14-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35153,13 +35153,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-14-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "14-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-14-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35218,13 +35218,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-14-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "14-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-14-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35233,13 +35233,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-14-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "14-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-14-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35298,13 +35298,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-14-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "14-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-14-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35363,13 +35363,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-14-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "14-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-14-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35378,13 +35378,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-14-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "14-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-14-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35443,13 +35443,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-14-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "14-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-14-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35508,13 +35508,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-14-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "14-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-14-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35573,13 +35573,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-14-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "14-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-14-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35638,13 +35638,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-14-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "14-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-14-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35703,13 +35703,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-14-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "14-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-14-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35768,13 +35768,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-14-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "14-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-14-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35833,13 +35833,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-14-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "14-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-14-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35848,13 +35848,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-14-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "14-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-14-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35913,13 +35913,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-14-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "14-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-14-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -35978,13 +35978,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-14-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "14-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-14-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36043,13 +36043,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-14-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "14-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-14-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36108,13 +36108,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-14-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "13-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-13-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36173,13 +36173,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-13-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "13-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-13-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36238,13 +36238,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-13-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "13-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-13-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36303,13 +36303,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-13-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "13-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-13-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36368,13 +36368,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-13-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "13-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-13-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36433,13 +36433,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-13-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "13-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-13-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36498,13 +36498,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-13-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "13-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-13-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36563,13 +36563,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-13-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "13-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-13-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36628,13 +36628,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-13-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "13-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-13-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36693,13 +36693,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-13-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "13-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-13-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36758,13 +36758,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-13-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "13-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-13-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36823,13 +36823,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-13-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "13-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-13-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36888,13 +36888,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-13-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "13-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-13-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -36953,13 +36953,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-13-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "13-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-13-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37018,13 +37018,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-13-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "13-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-13-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37083,13 +37083,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-13-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "13-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-13-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37148,13 +37148,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-13-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "13-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-13-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37213,13 +37213,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-13-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "13-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-13-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37330,13 +37330,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-13-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "13-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-13-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37395,13 +37395,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-13-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "13-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-13-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37460,13 +37460,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-13-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "29-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-29-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37525,13 +37525,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-29-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "29-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-29-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37590,13 +37590,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-29-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "29-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-29-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37655,13 +37655,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-29-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "29-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-29-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37720,13 +37720,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-29-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "29-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-29-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37785,13 +37785,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-29-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "29-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-29-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37850,13 +37850,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-29-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "29-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-29-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37915,13 +37915,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-29-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "29-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-29-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -37980,13 +37980,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-29-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "29-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-29-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38035,13 +38035,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-29-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "29-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-29-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38100,13 +38100,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-29-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "29-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-29-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38165,13 +38165,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-29-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "29-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-29-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38230,13 +38230,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-29-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "29-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-29-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38295,13 +38295,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-29-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "29-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-29-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38360,13 +38360,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-29-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "29-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-29-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38425,13 +38425,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-29-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "29-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-29-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38490,13 +38490,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-29-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "29-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-29-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38555,13 +38555,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-29-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "29-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-29-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38620,13 +38620,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-29-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "29-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-29-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38685,13 +38685,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-29-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "29-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-29-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38750,13 +38750,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-29-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "12-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-12-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38815,13 +38815,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-12-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "12-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-12-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38880,13 +38880,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-12-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "12-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-12-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -38945,13 +38945,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-12-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "12-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-12-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39010,13 +39010,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-12-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "12-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-12-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39075,13 +39075,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-12-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "12-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-12-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39140,13 +39140,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-12-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "12-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-12-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39205,13 +39205,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-12-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "12-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-12-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39270,13 +39270,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-12-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "12-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-12-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39335,13 +39335,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-12-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "12-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-12-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39400,13 +39400,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-12-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "12-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-12-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39465,13 +39465,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-12-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "12-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-12-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39530,13 +39530,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-12-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "12-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-12-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39595,13 +39595,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-12-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "12-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-12-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39656,13 +39656,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-12-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "12-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-12-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39721,13 +39721,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-12-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "12-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-12-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39806,13 +39806,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-12-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "12-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-12-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39871,13 +39871,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-12-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "12-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-12-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39936,13 +39936,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-12-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "12-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-12-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39951,13 +39951,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-12-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "12-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-12-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40016,13 +40016,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-12-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "35-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-35-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40081,13 +40081,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-35-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "35-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-35-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40146,13 +40146,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-35-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "35-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-35-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40211,13 +40211,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-35-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "35-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-35-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40276,13 +40276,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-35-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "35-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-35-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40341,13 +40341,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-35-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "35-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-35-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40406,13 +40406,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-35-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "35-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-35-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40471,13 +40471,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-35-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "35-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-35-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40536,13 +40536,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-35-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "35-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-35-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40601,13 +40601,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-35-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "35-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-35-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40666,13 +40666,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-35-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "35-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-35-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40731,13 +40731,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-35-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "35-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-35-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40796,13 +40796,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-35-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "35-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-35-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40861,13 +40861,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-35-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "35-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-35-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40926,13 +40926,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-35-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "35-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-35-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -40991,13 +40991,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-35-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "35-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-35-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41056,13 +41056,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-35-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "35-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-35-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41121,13 +41121,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-35-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "35-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-35-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41186,13 +41186,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-35-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "35-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-35-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41201,13 +41201,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-35-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "35-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-35-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41266,13 +41266,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-35-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "19-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-19-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41331,13 +41331,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-19-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "19-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-19-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41396,13 +41396,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-19-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "19-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-19-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41461,13 +41461,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-19-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "19-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-19-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41526,13 +41526,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-19-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "19-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-19-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41591,13 +41591,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-19-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "19-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-19-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41656,13 +41656,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-19-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "19-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-19-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41721,13 +41721,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-19-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "19-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-19-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41786,13 +41786,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-19-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "19-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-19-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41851,13 +41851,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-19-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "19-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-19-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41916,13 +41916,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-19-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "19-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-19-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -41981,13 +41981,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-19-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "19-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-19-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42046,13 +42046,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-19-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "19-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-19-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42111,13 +42111,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-19-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "19-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-19-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42176,13 +42176,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-19-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "19-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-19-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42241,13 +42241,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-19-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "19-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-19-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42306,13 +42306,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-19-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "19-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-19-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42371,13 +42371,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-19-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "19-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-19-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42436,13 +42436,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-19-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "19-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-19-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42501,13 +42501,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-19-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "19-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-19-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42566,13 +42566,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-19-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "11-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-11-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42631,13 +42631,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-11-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "11-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-11-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42696,13 +42696,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-11-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "11-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-11-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42761,13 +42761,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-11-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "11-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-11-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42826,13 +42826,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-11-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "11-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-11-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42891,13 +42891,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-11-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "11-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-11-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42956,13 +42956,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-11-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "11-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-11-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -42971,13 +42971,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-11-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "11-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-11-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43036,13 +43036,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-11-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "11-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-11-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43101,13 +43101,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-11-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "11-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-11-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43166,13 +43166,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-11-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "11-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-11-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43231,13 +43231,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-11-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "11-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-11-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43296,13 +43296,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-11-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "11-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-11-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43407,13 +43407,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-11-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "11-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-11-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43472,13 +43472,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-11-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "11-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-11-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43537,13 +43537,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-11-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "11-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-11-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43602,13 +43602,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-11-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "11-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-11-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43667,13 +43667,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-11-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "11-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-11-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43732,13 +43732,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-11-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "11-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-11-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43797,13 +43797,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-11-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "11-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-11-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43862,13 +43862,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-11-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "45-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-45-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43927,13 +43927,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-45-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "45-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-45-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -43992,13 +43992,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-45-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "45-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-45-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44057,13 +44057,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-45-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "45-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-45-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44122,13 +44122,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-45-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "45-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-45-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44187,13 +44187,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-45-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "45-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-45-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44252,13 +44252,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-45-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "45-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-45-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44317,13 +44317,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-45-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "45-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-45-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44382,13 +44382,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-45-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "45-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-45-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44447,13 +44447,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-45-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "45-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-45-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44512,13 +44512,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-45-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "45-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-45-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44577,13 +44577,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-45-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "45-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-45-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44642,13 +44642,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-45-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "45-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-45-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44707,13 +44707,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-45-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "45-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-45-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44772,13 +44772,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-45-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "45-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-45-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44837,13 +44837,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-45-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "45-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-45-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44902,13 +44902,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-45-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "45-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-45-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -44967,13 +44967,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-45-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "45-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-45-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45032,13 +45032,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-45-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "45-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-45-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45097,13 +45097,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-45-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "45-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-45-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45162,13 +45162,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-45-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "27-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-27-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45227,13 +45227,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-27-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "27-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-27-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45292,13 +45292,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-27-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "27-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-27-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45357,13 +45357,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-27-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "27-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-27-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45422,13 +45422,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-27-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "27-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-27-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45487,13 +45487,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-27-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "27-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-27-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45552,13 +45552,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-27-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "27-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-27-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45617,13 +45617,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-27-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "27-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-27-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45682,13 +45682,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-27-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "27-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-27-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45747,13 +45747,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-27-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "27-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-27-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45812,13 +45812,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-27-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "27-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-27-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45877,13 +45877,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-27-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "27-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-27-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -45942,13 +45942,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-27-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "27-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-27-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46007,13 +46007,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-27-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "27-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-27-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46072,13 +46072,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-27-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "27-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-27-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46137,13 +46137,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-27-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "27-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-27-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46202,13 +46202,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-27-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "27-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-27-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46267,13 +46267,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-27-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "27-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-27-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46332,13 +46332,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-27-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "27-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-27-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46397,13 +46397,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-27-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "27-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-27-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46462,13 +46462,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-27-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "10-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-10-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46527,13 +46527,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-10-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "10-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-10-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46592,13 +46592,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-10-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "10-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-10-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46657,13 +46657,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-10-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "10-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-10-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46722,13 +46722,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-10-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "10-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-10-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46787,13 +46787,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-10-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "10-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-10-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46910,13 +46910,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-10-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "10-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-10-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -46975,13 +46975,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-10-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "10-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-10-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47040,13 +47040,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-10-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "10-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-10-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47055,13 +47055,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-10-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "10-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-10-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47120,13 +47120,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-10-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "10-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-10-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47185,13 +47185,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-10-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "10-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-10-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47250,13 +47250,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-10-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "10-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-10-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47315,13 +47315,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-10-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "10-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-10-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47380,13 +47380,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-10-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "10-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-10-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47445,13 +47445,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-10-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "10-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-10-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47510,13 +47510,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-10-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "10-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-10-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47575,13 +47575,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-10-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "10-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-10-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47640,13 +47640,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-10-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "10-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-10-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47705,13 +47705,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-10-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "10-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-10-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47770,13 +47770,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-10-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "44-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-44-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47835,13 +47835,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-44-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "44-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-44-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47900,13 +47900,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-44-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "44-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-44-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -47965,13 +47965,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-44-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "44-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-44-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48030,13 +48030,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-44-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "44-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-44-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48095,13 +48095,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-44-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "44-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-44-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48160,13 +48160,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-44-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "44-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-44-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48225,13 +48225,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-44-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "44-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-44-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48290,13 +48290,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-44-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "44-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-44-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48355,13 +48355,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-44-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "44-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-44-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48420,13 +48420,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-44-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "44-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-44-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48485,13 +48485,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-44-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "44-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-44-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48550,13 +48550,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-44-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "44-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-44-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48615,13 +48615,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-44-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "44-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-44-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48680,13 +48680,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-44-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "44-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-44-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48745,13 +48745,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-44-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "44-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-44-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48810,13 +48810,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-44-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "44-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-44-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48875,13 +48875,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-44-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "44-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-44-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -48940,13 +48940,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-44-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "44-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-44-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49005,13 +49005,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-44-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "44-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-44-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49070,13 +49070,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-44-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "1-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-1-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49135,13 +49135,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-1-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "1-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-1-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49150,13 +49150,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-1-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "1-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-1-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49215,13 +49215,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-1-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "1-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-1-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49280,13 +49280,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-1-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "1-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-1-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49345,13 +49345,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-1-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "1-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-1-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49410,13 +49410,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-1-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "1-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-1-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49475,13 +49475,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-1-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "1-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-1-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49490,13 +49490,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-1-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "1-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-1-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49555,13 +49555,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-1-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "1-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-1-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49620,13 +49620,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-1-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "1-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-1-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49685,13 +49685,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-1-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "1-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-1-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49750,13 +49750,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-1-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "1-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-1-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49815,13 +49815,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-1-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "1-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-1-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49880,13 +49880,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-1-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "1-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-1-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -49945,13 +49945,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-1-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "1-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-1-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50010,13 +50010,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-1-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "1-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-1-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50075,13 +50075,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-1-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "1-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-1-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50140,13 +50140,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-1-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "1-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-1-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50205,13 +50205,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-1-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "1-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-1-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50270,13 +50270,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-1-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "43-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-43-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50335,13 +50335,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-43-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "43-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-43-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50400,13 +50400,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-43-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "43-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-43-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50465,13 +50465,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-43-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "43-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-43-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50530,13 +50530,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-43-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "43-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-43-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50595,13 +50595,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-43-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "43-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-43-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50660,13 +50660,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-43-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "43-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-43-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50725,13 +50725,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-43-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "43-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-43-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50740,13 +50740,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-43-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "43-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-43-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50805,13 +50805,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-43-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "43-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-43-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50870,13 +50870,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-43-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "43-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-43-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -50935,13 +50935,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-43-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "43-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-43-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51000,13 +51000,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-43-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "43-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-43-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51015,13 +51015,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-43-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "43-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-43-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51030,13 +51030,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-43-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "43-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-43-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51095,13 +51095,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-43-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "43-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-43-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51160,13 +51160,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-43-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "43-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-43-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51225,13 +51225,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-43-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "43-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-43-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51290,13 +51290,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-43-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "43-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-43-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51355,13 +51355,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-43-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "43-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-43-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51420,13 +51420,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-43-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "9-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-9-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51485,13 +51485,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-9-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "9-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-9-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51550,13 +51550,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-9-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "9-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-9-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51565,13 +51565,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-9-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "9-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-9-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51580,13 +51580,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-9-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "9-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-9-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51645,13 +51645,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-9-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "9-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-9-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51710,13 +51710,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-9-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "9-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-9-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51775,13 +51775,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-9-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "9-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-9-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51840,13 +51840,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-9-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "9-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-9-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51905,13 +51905,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-9-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "9-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-9-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -51970,13 +51970,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-9-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "9-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-9-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52035,13 +52035,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-9-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "9-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-9-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52100,13 +52100,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-9-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "9-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-9-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52165,13 +52165,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-9-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "9-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-9-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52230,13 +52230,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-9-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "9-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-9-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52295,13 +52295,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-9-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "9-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-9-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52360,13 +52360,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-9-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "9-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-9-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52425,13 +52425,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-9-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "9-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-9-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52490,13 +52490,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-9-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "9-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-9-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52555,13 +52555,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-9-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "9-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-9-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52620,13 +52620,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-9-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "4-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-4-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52685,13 +52685,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-4-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "4-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-4-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52750,13 +52750,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-4-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "4-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-4-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52815,13 +52815,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-4-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "4-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-4-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52880,13 +52880,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-4-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "4-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-4-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -52945,13 +52945,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-4-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "4-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-4-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53010,13 +53010,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-4-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "4-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-4-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53075,13 +53075,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-4-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "4-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-4-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53140,13 +53140,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-4-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "4-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-4-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53205,13 +53205,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-4-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "4-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-4-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53270,13 +53270,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-4-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "4-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-4-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53335,13 +53335,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-4-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "4-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-4-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53400,13 +53400,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-4-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "4-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-4-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53465,13 +53465,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-4-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "4-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-4-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53530,13 +53530,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-4-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "4-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-4-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53595,13 +53595,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-4-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "4-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-4-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53660,13 +53660,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-4-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "4-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-4-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53725,13 +53725,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-4-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "4-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-4-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53790,13 +53790,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-4-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "4-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-4-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53855,13 +53855,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-4-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "4-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-4-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53920,13 +53920,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-4-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "8-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-8-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53985,13 +53985,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-8-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "8-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-8-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54050,13 +54050,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-8-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "8-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-8-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54065,13 +54065,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-8-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "8-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-8-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54130,13 +54130,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-8-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "8-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-8-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54195,13 +54195,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-8-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "8-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-8-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54210,13 +54210,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-8-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "8-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-8-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54275,13 +54275,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-8-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "8-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-8-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54340,13 +54340,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-8-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "8-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-8-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54405,13 +54405,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-8-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "8-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-8-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54470,13 +54470,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-8-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "8-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-8-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54535,13 +54535,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-8-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "8-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-8-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54600,13 +54600,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-8-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "8-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-8-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54665,13 +54665,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-8-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "8-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-8-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54740,13 +54740,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-8-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "8-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-8-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54805,13 +54805,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-8-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "8-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-8-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54870,13 +54870,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-8-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "8-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-8-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -54935,13 +54935,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-8-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "8-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-8-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55000,13 +55000,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-8-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "8-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-8-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55015,13 +55015,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-8-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "8-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-8-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55080,13 +55080,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-8-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "7-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-7-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55145,13 +55145,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-7-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "7-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-7-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55210,13 +55210,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-7-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "7-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-7-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55275,13 +55275,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-7-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "7-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-7-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55340,13 +55340,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-7-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "7-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-7-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55405,13 +55405,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-7-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "7-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-7-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55470,13 +55470,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-7-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "7-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-7-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55535,13 +55535,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-7-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "7-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-7-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55600,13 +55600,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-7-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "7-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-7-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55665,13 +55665,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-7-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "7-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-7-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55730,13 +55730,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-7-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "7-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-7-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55795,13 +55795,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-7-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "7-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-7-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55810,13 +55810,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-7-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "7-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-7-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55875,13 +55875,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-7-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "7-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-7-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -55940,13 +55940,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-7-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "7-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-7-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56005,13 +56005,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-7-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "7-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-7-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56070,13 +56070,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-7-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "7-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-7-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56135,13 +56135,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-7-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "7-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-7-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56200,13 +56200,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-7-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "7-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-7-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56265,13 +56265,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-7-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "7-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-7-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56330,13 +56330,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-7-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "28-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-28-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56395,13 +56395,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-28-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "28-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-28-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56450,13 +56450,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-28-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "28-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-28-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56515,13 +56515,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-28-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "28-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-28-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56580,13 +56580,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-28-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "28-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-28-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56645,13 +56645,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-28-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "28-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-28-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56710,13 +56710,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-28-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "28-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-28-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56775,13 +56775,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-28-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "28-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-28-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56840,13 +56840,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-28-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "28-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-28-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56905,13 +56905,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-28-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "28-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-28-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56920,13 +56920,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-28-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "28-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-28-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -56985,13 +56985,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-28-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "28-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-28-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57000,13 +57000,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-28-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "28-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-28-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57065,13 +57065,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-28-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "28-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-28-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57130,13 +57130,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-28-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "28-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-28-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57195,13 +57195,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-28-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "28-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-28-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57260,13 +57260,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-28-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "28-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-28-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57325,13 +57325,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-28-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "28-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-28-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57390,13 +57390,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-28-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "28-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-28-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57455,13 +57455,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-28-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "28-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-28-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57520,13 +57520,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-28-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "6-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-6-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57585,13 +57585,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-6-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "6-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-6-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57650,13 +57650,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-6-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "6-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-6-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57715,13 +57715,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-6-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "6-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-6-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57780,13 +57780,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-6-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "6-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-6-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57891,13 +57891,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-6-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "6-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-6-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -57956,13 +57956,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-6-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "6-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-6-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58021,13 +58021,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-6-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "6-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-6-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58086,13 +58086,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-6-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "6-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-6-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58151,13 +58151,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-6-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "6-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-6-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58216,13 +58216,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-6-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "6-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-6-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58281,13 +58281,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-6-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "6-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-6-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58346,13 +58346,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-6-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "6-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-6-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58411,13 +58411,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-6-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "6-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-6-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58476,13 +58476,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-6-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "6-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-6-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58541,13 +58541,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-6-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "6-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-6-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58606,13 +58606,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-6-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "6-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-6-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58671,13 +58671,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-6-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "6-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-6-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58736,13 +58736,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-6-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "6-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-6-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58801,13 +58801,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-6-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "6-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-6-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58866,13 +58866,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-6-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "5-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-5-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58931,13 +58931,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-5-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "5-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-5-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -58996,13 +58996,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-5-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "5-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-5-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59061,13 +59061,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-5-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "5-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-5-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59126,13 +59126,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-5-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "5-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-5-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59191,13 +59191,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-5-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "5-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-5-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59256,13 +59256,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-5-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "5-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-5-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59271,13 +59271,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-5-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "5-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-5-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59336,13 +59336,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-5-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "5-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-5-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59401,13 +59401,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-5-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "5-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-5-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59466,13 +59466,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-5-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "5-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-5-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59531,13 +59531,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-5-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "5-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-5-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59596,13 +59596,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-5-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "5-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-5-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59661,13 +59661,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-5-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "5-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-5-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59726,13 +59726,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-5-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "5-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-5-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59741,13 +59741,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-5-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "5-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-5-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59806,13 +59806,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-5-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "5-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-5-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59871,13 +59871,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-5-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "5-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-5-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -59936,13 +59936,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-5-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "5-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-5-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60001,13 +60001,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-5-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "5-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-5-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60066,13 +60066,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-5-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "3-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-3-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60131,13 +60131,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-3-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "3-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-3-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60196,13 +60196,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-3-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "3-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-3-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60261,13 +60261,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-3-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "3-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-3-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60326,13 +60326,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-3-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "3-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-3-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60391,13 +60391,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-3-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "3-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-3-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60456,13 +60456,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-3-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "3-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-3-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60521,13 +60521,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-3-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "3-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-3-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60586,13 +60586,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-3-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "3-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-3-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60651,13 +60651,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-3-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "3-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-3-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60716,13 +60716,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-3-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "3-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-3-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60781,13 +60781,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-3-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "3-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-3-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60846,13 +60846,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-3-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "3-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-3-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60861,13 +60861,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-3-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "3-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-3-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60926,13 +60926,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-3-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "3-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-3-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -60991,13 +60991,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-3-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "3-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-3-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61056,13 +61056,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-3-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "3-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-3-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61121,13 +61121,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-3-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "3-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-3-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61186,13 +61186,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-3-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "3-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-3-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61251,13 +61251,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-3-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "3-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-3-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61316,13 +61316,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-3-1-20", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "2-1-1", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-2-1-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61381,13 +61381,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-1", + "CurrentSnapshotId" : "ballot-2-1-1", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "2-1-2", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-2-1-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61446,13 +61446,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-2", + "CurrentSnapshotId" : "ballot-2-1-2", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "2-1-3", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-2-1-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61511,13 +61511,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-3", + "CurrentSnapshotId" : "ballot-2-1-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "2-1-4", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-2-1-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61576,13 +61576,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-4", + "CurrentSnapshotId" : "ballot-2-1-4", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "2-1-5", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-2-1-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61641,13 +61641,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-5", + "CurrentSnapshotId" : "ballot-2-1-5", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "2-1-6", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-2-1-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61706,13 +61706,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-6", + "CurrentSnapshotId" : "ballot-2-1-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "2-1-7", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-2-1-7", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61771,13 +61771,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-7", + "CurrentSnapshotId" : "ballot-2-1-7", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "2-1-8", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-2-1-8", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61836,13 +61836,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-8", + "CurrentSnapshotId" : "ballot-2-1-8", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "2-1-9", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-2-1-9", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61901,13 +61901,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-9", + "CurrentSnapshotId" : "ballot-2-1-9", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "2-1-10", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-2-1-10", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -61966,13 +61966,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-10", + "CurrentSnapshotId" : "ballot-2-1-10", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "2-1-11", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-2-1-11", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62031,13 +62031,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-11", + "CurrentSnapshotId" : "ballot-2-1-11", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "2-1-12", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-2-1-12", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62096,13 +62096,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-12", + "CurrentSnapshotId" : "ballot-2-1-12", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "2-1-13", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-2-1-13", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62161,13 +62161,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-13", + "CurrentSnapshotId" : "ballot-2-1-13", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "2-1-14", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-2-1-14", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62226,13 +62226,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-14", + "CurrentSnapshotId" : "ballot-2-1-14", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "2-1-15", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-2-1-15", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62291,13 +62291,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-15", + "CurrentSnapshotId" : "ballot-2-1-15", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "2-1-16", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-2-1-16", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62356,13 +62356,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-16", + "CurrentSnapshotId" : "ballot-2-1-16", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "2-1-17", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-2-1-17", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62421,13 +62421,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-17", + "CurrentSnapshotId" : "ballot-2-1-17", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "2-1-18", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-2-1-18", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62486,13 +62486,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-18", + "CurrentSnapshotId" : "ballot-2-1-18", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "2-1-19", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-2-1-19", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62551,13 +62551,13 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-19", + "CurrentSnapshotId" : "ballot-2-1-19", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "2-1-20", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-2-1-20", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62616,7 +62616,7 @@ } ], "Type" : "original" } ], - "CurrentSnapshotId" : "ballot-20", + "CurrentSnapshotId" : "ballot-2-1-20", "ElectionId" : "election-001" } ], "Election" : [ { @@ -62694,7 +62694,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2023-06-16T11:48:37-04:00", + "GeneratedDate" : "2025-01-21T04:44:16-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", @@ -62710,4 +62710,4 @@ "Manufacturer" : "Bright Spots" } ], "Version" : "1.0.0" -} +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv index 9f4be203..df944e16 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/conversions_from_ess/conversions_from_ess_expected.csv @@ -1,11 +1,11 @@ -RCTab CVR Id,Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3 -simple_ess_cvr.xlsx-1,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-1,,,Mookie Blaylock,undervote,undervote -simple_ess_cvr.xlsx-2,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-2,,,Mookie Blaylock,undervote,undervote -simple_ess_cvr.xlsx-3,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-3,,,Mookie Blaylock,undervote,undervote -simple_ess_cvr.xlsx-4,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-4,,,Mookie Blaylock,undervote,undervote -simple_ess_cvr.xlsx-5,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-5,,,Yinka Dare,undervote,undervote -simple_ess_cvr.xlsx-6,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-6,,,Yinka Dare,undervote,undervote -simple_ess_cvr.xlsx-7,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-7,,,Yinka Dare,undervote,undervote -simple_ess_cvr.xlsx-8,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-8,,,George Gervin,undervote,undervote -simple_ess_cvr.xlsx-9,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-9,,,George Gervin,Yinka Dare,undervote -simple_ess_cvr.xlsx-10,../_shared/simple_ess_cvr.xlsx,ess,,,,simple_ess_cvr.xlsx-10,,,Sedale Threatt,George Gervin,undervote +Source Filepath,CVR Provider,Contest Id,RCTab CVR Id,Tabulator Id,Batch Id,Vendor Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3 +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-1,,,,,,Mookie Blaylock,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-2,,,,,,Mookie Blaylock,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-3,,,,,,Mookie Blaylock,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-4,,,,,,Mookie Blaylock,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-5,,,,,,Yinka Dare,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-6,,,,,,Yinka Dare,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-7,,,,,,Yinka Dare,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-8,,,,,,George Gervin,undervote,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-9,,,,,,George Gervin,Yinka Dare,undervote +../_shared/simple_ess_cvr.xlsx,ess,,simple_ess_cvr.xlsx-10,,,,,,Sedale Threatt,George Gervin,undervote diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_0_skipped_first_choice/test_set_0_skipped_first_choice_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_0_skipped_first_choice/test_set_0_skipped_first_choice_expected_cdf_cvr.json index 6b37a72e..9a7d85ab 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_0_skipped_first_choice/test_set_0_skipped_first_choice_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_0_skipped_first_choice/test_set_0_skipped_first_choice_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53,7 +53,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -102,7 +102,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -151,7 +151,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -200,13 +200,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -255,7 +255,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -304,7 +304,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -353,7 +353,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -402,13 +402,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -457,7 +457,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -506,7 +506,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -555,7 +555,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -604,13 +604,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -659,7 +659,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -708,7 +708,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -757,7 +757,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -806,13 +806,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -861,7 +861,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -910,7 +910,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -959,7 +959,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1008,13 +1008,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1053,7 +1053,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1092,7 +1092,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1131,7 +1131,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1170,13 +1170,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1225,7 +1225,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1274,7 +1274,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1323,7 +1323,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1372,13 +1372,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1427,7 +1427,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1476,7 +1476,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1525,7 +1525,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1574,13 +1574,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1629,7 +1629,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1678,7 +1678,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1727,7 +1727,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1776,13 +1776,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1831,7 +1831,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1880,7 +1880,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1929,7 +1929,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1978,13 +1978,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2033,7 +2033,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2082,7 +2082,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2131,7 +2131,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2180,13 +2180,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_0_skipped_first_choice_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2231,7 +2231,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2276,7 +2276,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2321,7 +2321,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_0_skipped_first_choice_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2366,7 +2366,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_0_skipped_first_choice_cvr.json_12_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2409,7 +2409,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:33:56-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_1_exhaust_at_overvote/test_set_1_exhaust_at_overvote_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_1_exhaust_at_overvote/test_set_1_exhaust_at_overvote_expected_cdf_cvr.json index 8f1700e1..bc774cc4 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_1_exhaust_at_overvote/test_set_1_exhaust_at_overvote_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_1_exhaust_at_overvote/test_set_1_exhaust_at_overvote_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53,7 +53,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -102,7 +102,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -151,7 +151,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -200,13 +200,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -255,7 +255,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -304,7 +304,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -353,7 +353,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -402,13 +402,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -457,7 +457,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -506,7 +506,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -555,7 +555,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -604,13 +604,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -659,7 +659,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -708,7 +708,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -757,7 +757,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -806,13 +806,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -861,7 +861,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -910,7 +910,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -959,7 +959,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1008,13 +1008,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1063,7 +1063,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1112,7 +1112,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1161,7 +1161,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1210,13 +1210,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1265,7 +1265,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1314,7 +1314,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1363,7 +1363,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1412,13 +1412,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1467,7 +1467,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1516,7 +1516,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1565,7 +1565,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1614,13 +1614,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1669,7 +1669,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1718,7 +1718,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1767,7 +1767,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1816,13 +1816,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1871,7 +1871,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1920,7 +1920,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1969,7 +1969,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2018,13 +2018,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2073,7 +2073,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2122,7 +2122,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2171,7 +2171,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2220,13 +2220,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2275,7 +2275,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2324,7 +2324,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2373,7 +2373,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2422,13 +2422,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2457,7 +2457,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2486,7 +2486,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2515,7 +2515,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2544,13 +2544,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2589,7 +2589,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2628,7 +2628,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2667,7 +2667,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2706,13 +2706,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_1_exhaust_at_overvote_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2761,7 +2761,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2810,7 +2810,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2859,7 +2859,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2908,7 +2908,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_1_exhaust_at_overvote_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2951,7 +2951,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:33:16-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_2_overvote_skip_to_next/test_set_2_overvote_skip_to_next_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_2_overvote_skip_to_next/test_set_2_overvote_skip_to_next_expected_cdf_cvr.json index 388891a4..524ae50a 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_2_overvote_skip_to_next/test_set_2_overvote_skip_to_next_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_2_overvote_skip_to_next/test_set_2_overvote_skip_to_next_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53,7 +53,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -102,7 +102,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -151,7 +151,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -200,13 +200,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -255,7 +255,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -304,7 +304,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -353,7 +353,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -402,13 +402,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -457,7 +457,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -506,7 +506,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -555,7 +555,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -604,13 +604,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -659,7 +659,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -708,7 +708,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -757,7 +757,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -806,13 +806,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -861,7 +861,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -910,7 +910,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -959,7 +959,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1008,13 +1008,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1063,7 +1063,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1112,7 +1112,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1161,7 +1161,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1210,13 +1210,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1265,7 +1265,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1314,7 +1314,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1363,7 +1363,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1412,13 +1412,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1467,7 +1467,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1516,7 +1516,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1565,7 +1565,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1614,13 +1614,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1669,7 +1669,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1718,7 +1718,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1767,7 +1767,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1816,13 +1816,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1871,7 +1871,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1920,7 +1920,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1969,7 +1969,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2018,13 +2018,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2073,7 +2073,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2122,7 +2122,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2171,7 +2171,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2220,13 +2220,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2275,7 +2275,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2324,7 +2324,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2373,7 +2373,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2422,13 +2422,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2457,7 +2457,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2486,7 +2486,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2515,7 +2515,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2544,13 +2544,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2589,7 +2589,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2628,7 +2628,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2667,7 +2667,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2706,13 +2706,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_2_overvote_skip_to_next_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2761,7 +2761,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2810,7 +2810,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2859,7 +2859,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2908,7 +2908,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_2_overvote_skip_to_next_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2951,7 +2951,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T12:36:29-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_3_skipped_choice_exhaust/test_set_3_skipped_choice_exhaust_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_3_skipped_choice_exhaust/test_set_3_skipped_choice_exhaust_expected_cdf_cvr.json index ca15cd52..6658d700 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_3_skipped_choice_exhaust/test_set_3_skipped_choice_exhaust_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_3_skipped_choice_exhaust/test_set_3_skipped_choice_exhaust_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33,7 +33,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62,7 +62,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -91,7 +91,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -120,13 +120,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -175,7 +175,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -224,7 +224,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -273,7 +273,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -322,13 +322,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -377,7 +377,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -426,7 +426,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -475,7 +475,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -524,13 +524,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -579,7 +579,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -628,7 +628,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -677,7 +677,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -726,13 +726,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -781,7 +781,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -830,7 +830,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -879,7 +879,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -928,13 +928,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -983,7 +983,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1032,7 +1032,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1081,7 +1081,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1130,13 +1130,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1185,7 +1185,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1234,7 +1234,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1283,7 +1283,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1332,13 +1332,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1377,7 +1377,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1416,7 +1416,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1455,7 +1455,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1494,13 +1494,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1549,7 +1549,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1598,7 +1598,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1647,7 +1647,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1696,13 +1696,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1751,7 +1751,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1800,7 +1800,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1849,7 +1849,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1898,13 +1898,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1953,7 +1953,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2002,7 +2002,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2051,7 +2051,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2100,13 +2100,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2155,7 +2155,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2204,7 +2204,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2253,7 +2253,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2302,13 +2302,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2337,7 +2337,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2366,7 +2366,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2395,7 +2395,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2424,13 +2424,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2469,7 +2469,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2508,7 +2508,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2547,7 +2547,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2586,13 +2586,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_3_skipped_choice_exhaust_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2641,7 +2641,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2690,7 +2690,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2739,7 +2739,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2788,7 +2788,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_3_skipped_choice_exhaust_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2831,7 +2831,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T12:36:29-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_4_skipped_choice_next/test_set_4_skipped_choice_next_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_4_skipped_choice_next/test_set_4_skipped_choice_next_expected_cdf_cvr.json index 83efc0c3..5307c7ae 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_4_skipped_choice_next/test_set_4_skipped_choice_next_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_4_skipped_choice_next/test_set_4_skipped_choice_next_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33,7 +33,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62,7 +62,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -91,7 +91,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -120,13 +120,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -175,7 +175,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -224,7 +224,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -273,7 +273,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -322,13 +322,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -377,7 +377,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -426,7 +426,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -475,7 +475,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -524,13 +524,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -579,7 +579,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -628,7 +628,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -677,7 +677,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -726,13 +726,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -781,7 +781,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -830,7 +830,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -879,7 +879,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -928,13 +928,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -983,7 +983,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1032,7 +1032,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1081,7 +1081,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1130,13 +1130,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1185,7 +1185,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1234,7 +1234,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1283,7 +1283,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1332,13 +1332,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1377,7 +1377,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1416,7 +1416,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1455,7 +1455,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1494,13 +1494,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1549,7 +1549,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1598,7 +1598,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1647,7 +1647,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1696,13 +1696,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1751,7 +1751,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1800,7 +1800,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1849,7 +1849,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1898,13 +1898,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1953,7 +1953,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2002,7 +2002,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2051,7 +2051,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2100,13 +2100,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2155,7 +2155,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2204,7 +2204,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2253,7 +2253,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2302,13 +2302,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2337,7 +2337,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2366,7 +2366,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2395,7 +2395,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2424,13 +2424,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2469,7 +2469,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2508,7 +2508,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2547,7 +2547,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2586,13 +2586,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_4_skipped_choice_next_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2641,7 +2641,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2690,7 +2690,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2739,7 +2739,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_4_skipped_choice_next_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2788,7 +2788,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_4_skipped_choice_next_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2831,7 +2831,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:31:30-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_5_two_skipped_choice_exhaust/test_set_5_two_skipped_choice_exhaust_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_5_two_skipped_choice_exhaust/test_set_5_two_skipped_choice_exhaust_expected_cdf_cvr.json index f3c665de..5db4f467 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_5_two_skipped_choice_exhaust/test_set_5_two_skipped_choice_exhaust_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_5_two_skipped_choice_exhaust/test_set_5_two_skipped_choice_exhaust_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -33,7 +33,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -62,7 +62,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -91,7 +91,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -120,13 +120,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -175,7 +175,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -224,7 +224,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -273,7 +273,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -322,13 +322,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -377,7 +377,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -426,7 +426,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -475,7 +475,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -524,13 +524,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -579,7 +579,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -628,7 +628,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -677,7 +677,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -726,13 +726,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -781,7 +781,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -830,7 +830,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -879,7 +879,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -928,13 +928,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -983,7 +983,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1032,7 +1032,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1081,7 +1081,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1130,13 +1130,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1185,7 +1185,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1234,7 +1234,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1283,7 +1283,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1332,13 +1332,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1377,7 +1377,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1416,7 +1416,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1455,7 +1455,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1494,13 +1494,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1549,7 +1549,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1598,7 +1598,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1647,7 +1647,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1696,13 +1696,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1751,7 +1751,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1800,7 +1800,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1849,7 +1849,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1898,13 +1898,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1953,7 +1953,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2002,7 +2002,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2051,7 +2051,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2100,13 +2100,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2155,7 +2155,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2204,7 +2204,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2253,7 +2253,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2302,13 +2302,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2337,7 +2337,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2366,7 +2366,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2395,7 +2395,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2424,13 +2424,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2469,7 +2469,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2508,7 +2508,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2547,7 +2547,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2586,13 +2586,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_5_two_skipped_choice_exhaust_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2641,7 +2641,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2690,7 +2690,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2739,7 +2739,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2788,7 +2788,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_5_two_skipped_choice_exhaust_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2831,7 +2831,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:30:21-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_6_duplicate_exhaust/test_set_6_duplicate_exhaust_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_6_duplicate_exhaust/test_set_6_duplicate_exhaust_expected_cdf_cvr.json index 19bcfaef..92a9986c 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_6_duplicate_exhaust/test_set_6_duplicate_exhaust_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_6_duplicate_exhaust/test_set_6_duplicate_exhaust_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39,7 +39,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -74,7 +74,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -109,7 +109,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -144,13 +144,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -195,7 +195,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -240,7 +240,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -285,7 +285,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -330,13 +330,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -385,7 +385,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -434,7 +434,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -483,7 +483,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -532,13 +532,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -587,7 +587,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -636,7 +636,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -685,7 +685,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -734,13 +734,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -789,7 +789,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -838,7 +838,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -887,7 +887,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -936,13 +936,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -991,7 +991,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1040,7 +1040,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1089,7 +1089,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1138,13 +1138,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1193,7 +1193,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1242,7 +1242,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1291,7 +1291,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1340,13 +1340,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1385,7 +1385,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1424,7 +1424,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1463,7 +1463,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1502,13 +1502,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1557,7 +1557,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1606,7 +1606,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1655,7 +1655,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1704,13 +1704,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1759,7 +1759,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1808,7 +1808,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1857,7 +1857,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1906,13 +1906,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1957,7 +1957,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2002,7 +2002,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2047,7 +2047,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2092,13 +2092,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2147,7 +2147,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2196,7 +2196,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2245,7 +2245,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2294,13 +2294,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2329,7 +2329,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2358,7 +2358,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2387,7 +2387,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2416,13 +2416,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2461,7 +2461,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2500,7 +2500,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2539,7 +2539,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2578,13 +2578,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_6_duplicate_exhaust_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2633,7 +2633,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2682,7 +2682,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2731,7 +2731,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_6_duplicate_exhaust_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2780,7 +2780,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_6_duplicate_exhaust_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2823,7 +2823,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:20:55-07:00", + "GeneratedDate" : "2025-01-21T05:02:05-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_7_duplicate_skip_to_next/test_set_7_duplicate_skip_to_next_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_7_duplicate_skip_to_next/test_set_7_duplicate_skip_to_next_expected_cdf_cvr.json index c2f8cf28..1c2c7ad4 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_7_duplicate_skip_to_next/test_set_7_duplicate_skip_to_next_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_7_duplicate_skip_to_next/test_set_7_duplicate_skip_to_next_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -39,7 +39,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -74,7 +74,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -109,7 +109,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -144,13 +144,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -199,7 +199,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -248,7 +248,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -297,7 +297,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -346,13 +346,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -401,7 +401,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -450,7 +450,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -499,7 +499,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -548,13 +548,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -603,7 +603,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -652,7 +652,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -701,7 +701,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -750,13 +750,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -805,7 +805,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -854,7 +854,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -903,7 +903,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -952,13 +952,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1007,7 +1007,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1056,7 +1056,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1105,7 +1105,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1154,13 +1154,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1209,7 +1209,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1258,7 +1258,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1307,7 +1307,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1356,13 +1356,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1401,7 +1401,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1440,7 +1440,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1479,7 +1479,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1518,13 +1518,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1573,7 +1573,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1622,7 +1622,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1671,7 +1671,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1720,13 +1720,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1775,7 +1775,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1824,7 +1824,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1873,7 +1873,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1922,13 +1922,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1977,7 +1977,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2026,7 +2026,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2075,7 +2075,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2124,13 +2124,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2179,7 +2179,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2228,7 +2228,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2277,7 +2277,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2326,13 +2326,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2361,7 +2361,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2390,7 +2390,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2419,7 +2419,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2448,13 +2448,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_13_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2493,7 +2493,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2532,7 +2532,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2571,7 +2571,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2610,13 +2610,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_14_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_7_duplicate_skip_to_next_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2665,7 +2665,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2714,7 +2714,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2763,7 +2763,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2812,7 +2812,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-3", + "CurrentSnapshotId" : "ballot-test_set_7_duplicate_skip_to_next_cvr.json_15_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -2855,7 +2855,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:25:09-07:00", + "GeneratedDate" : "2025-01-21T04:25:15-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_8_multi_cdf/test_set_8_multi_cdf_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_8_multi_cdf/test_set_8_multi_cdf_expected_cdf_cvr.json index e4f5bb96..7c204106 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_8_multi_cdf/test_set_8_multi_cdf_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_8_multi_cdf/test_set_8_multi_cdf_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -53,7 +53,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -102,7 +102,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -151,7 +151,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -200,13 +200,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -255,7 +255,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -304,7 +304,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -353,7 +353,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -402,13 +402,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -457,7 +457,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -506,7 +506,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -555,7 +555,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -604,13 +604,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -659,7 +659,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -708,7 +708,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -757,7 +757,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -806,13 +806,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -861,7 +861,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -910,7 +910,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -959,7 +959,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1008,13 +1008,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1053,7 +1053,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1092,7 +1092,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1131,7 +1131,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1170,13 +1170,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1225,7 +1225,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1274,7 +1274,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1323,7 +1323,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1372,13 +1372,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1427,7 +1427,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1476,7 +1476,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1525,7 +1525,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1574,13 +1574,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1629,7 +1629,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1678,7 +1678,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1727,7 +1727,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1776,13 +1776,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1831,7 +1831,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1880,7 +1880,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1929,7 +1929,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1978,13 +1978,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2033,7 +2033,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2082,7 +2082,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2131,7 +2131,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2180,13 +2180,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_1.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2231,7 +2231,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2276,7 +2276,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2321,7 +2321,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_1.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2366,13 +2366,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_1.json_12_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2421,7 +2421,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2470,7 +2470,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2519,7 +2519,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2568,13 +2568,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_1_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2623,7 +2623,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2672,7 +2672,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2721,7 +2721,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2770,13 +2770,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_2_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2825,7 +2825,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2874,7 +2874,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2923,7 +2923,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2972,13 +2972,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_3_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3027,7 +3027,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3076,7 +3076,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3125,7 +3125,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3174,13 +3174,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_4_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3229,7 +3229,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3278,7 +3278,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3327,7 +3327,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3376,13 +3376,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_5_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3421,7 +3421,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3460,7 +3460,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3499,7 +3499,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3538,13 +3538,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_6_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3593,7 +3593,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3642,7 +3642,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3691,7 +3691,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3740,13 +3740,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_7_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3795,7 +3795,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3844,7 +3844,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3893,7 +3893,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3942,13 +3942,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_8_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3997,7 +3997,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4046,7 +4046,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4095,7 +4095,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4144,13 +4144,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_9_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4199,7 +4199,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4248,7 +4248,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4297,7 +4297,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4346,13 +4346,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_10_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4401,7 +4401,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4450,7 +4450,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4499,7 +4499,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4548,13 +4548,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_11_-round-3", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_8_multi_cdf_cvr_2.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4599,7 +4599,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4644,7 +4644,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4689,7 +4689,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_8_multi_cdf_cvr_2.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4734,7 +4734,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-3", + "CurrentSnapshotId" : "ballot-test_set_8_multi_cdf_cvr_2.json_12_-round-3", "ElectionId" : "election-001" } ], "Election" : [ { @@ -4777,7 +4777,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-07T18:51:24-07:00", + "GeneratedDate" : "2025-01-21T04:25:15-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_fractional_threshold/test_set_multi_winner_fractional_threshold_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_fractional_threshold/test_set_multi_winner_fractional_threshold_expected_cdf_cvr.json index 3fe062e1..632603e0 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_fractional_threshold/test_set_multi_winner_fractional_threshold_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_fractional_threshold/test_set_multi_winner_fractional_threshold_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -63,7 +63,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -122,7 +122,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -181,7 +181,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -242,7 +242,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -303,7 +303,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -364,7 +364,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -425,13 +425,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_1_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -500,7 +500,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -569,7 +569,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -638,7 +638,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -707,7 +707,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -776,7 +776,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -845,7 +845,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -915,13 +915,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_2_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -990,7 +990,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1059,7 +1059,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1128,7 +1128,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1199,7 +1199,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1270,7 +1270,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1341,7 +1341,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1412,13 +1412,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_3_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1467,7 +1467,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1516,7 +1516,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1565,7 +1565,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1614,7 +1614,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1663,7 +1663,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1712,7 +1712,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1762,13 +1762,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_4_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1797,7 +1797,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1826,7 +1826,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1855,7 +1855,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1884,7 +1884,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1913,7 +1913,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1942,7 +1942,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1972,13 +1972,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_5_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2047,7 +2047,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2116,7 +2116,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2185,7 +2185,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2254,7 +2254,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2323,7 +2323,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2392,7 +2392,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2462,13 +2462,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_6_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2517,7 +2517,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2566,7 +2566,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2615,7 +2615,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2664,7 +2664,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2713,7 +2713,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2762,7 +2762,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2812,13 +2812,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_7_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2877,7 +2877,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2936,7 +2936,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2995,7 +2995,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3054,7 +3054,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3113,7 +3113,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3172,7 +3172,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3232,13 +3232,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_8_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3297,7 +3297,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3356,7 +3356,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3415,7 +3415,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3476,7 +3476,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3537,7 +3537,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3598,7 +3598,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3659,13 +3659,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_9_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3684,7 +3684,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3703,7 +3703,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3722,7 +3722,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3741,7 +3741,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3760,7 +3760,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3779,7 +3779,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3798,13 +3798,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_10_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3843,7 +3843,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3882,7 +3882,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3921,7 +3921,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3962,7 +3962,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4003,7 +4003,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4043,7 +4043,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4083,13 +4083,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_11_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4154,7 +4154,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4219,7 +4219,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4284,7 +4284,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4349,7 +4349,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4414,7 +4414,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4479,7 +4479,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4545,13 +4545,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_12_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4600,7 +4600,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4649,7 +4649,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4698,7 +4698,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4749,7 +4749,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4800,7 +4800,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4850,7 +4850,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4900,13 +4900,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_13_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4965,7 +4965,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5024,7 +5024,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5083,7 +5083,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5142,7 +5142,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5201,7 +5201,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5260,7 +5260,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5320,13 +5320,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_14_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5395,7 +5395,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5464,7 +5464,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5533,7 +5533,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5602,7 +5602,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5671,7 +5671,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5740,7 +5740,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5810,13 +5810,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_15_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_16_", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5865,7 +5865,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-16-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5914,7 +5914,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5963,7 +5963,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6012,7 +6012,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6061,7 +6061,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6110,7 +6110,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6159,13 +6159,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-16-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_16_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_17_", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6234,7 +6234,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-17-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6303,7 +6303,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6372,7 +6372,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6441,7 +6441,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6510,7 +6510,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6579,7 +6579,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6649,13 +6649,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-17-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_17_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_18_", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6724,7 +6724,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-18-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6793,7 +6793,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6862,7 +6862,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6933,7 +6933,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7004,7 +7004,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7075,7 +7075,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7146,13 +7146,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-18-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_18_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_19_", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7201,7 +7201,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-19-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7250,7 +7250,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7299,7 +7299,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7348,7 +7348,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7397,7 +7397,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7446,7 +7446,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7496,13 +7496,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-19-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_19_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_20_", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7531,7 +7531,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-20-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7560,7 +7560,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7589,7 +7589,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7618,7 +7618,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7647,7 +7647,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7676,7 +7676,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7706,13 +7706,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-20-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_20_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "21", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_21_", "CVRSnapshot" : [ { - "@id" : "ballot-21", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7781,7 +7781,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-21-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7850,7 +7850,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7919,7 +7919,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7988,7 +7988,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8057,7 +8057,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8126,7 +8126,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8196,13 +8196,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-21-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_21_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "22", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_22_", "CVRSnapshot" : [ { - "@id" : "ballot-22", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8251,7 +8251,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-22-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8300,7 +8300,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8349,7 +8349,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8398,7 +8398,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8447,7 +8447,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8496,7 +8496,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8546,13 +8546,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-22-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_22_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "23", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_23_", "CVRSnapshot" : [ { - "@id" : "ballot-23", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8611,7 +8611,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-23-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8670,7 +8670,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8729,7 +8729,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8788,7 +8788,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8847,7 +8847,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8906,7 +8906,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8966,13 +8966,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-23-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_23_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "24", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_24_", "CVRSnapshot" : [ { - "@id" : "ballot-24", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9041,7 +9041,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-24-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9110,7 +9110,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9179,7 +9179,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9248,7 +9248,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9317,7 +9317,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9386,7 +9386,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9456,13 +9456,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-24-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_24_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "25", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_25_", "CVRSnapshot" : [ { - "@id" : "ballot-25", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9491,7 +9491,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-25-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9520,7 +9520,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9549,7 +9549,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9578,7 +9578,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9607,7 +9607,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9636,7 +9636,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9666,13 +9666,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-25-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_25_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "26", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_26_", "CVRSnapshot" : [ { - "@id" : "ballot-26", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9711,7 +9711,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-26-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9750,7 +9750,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9789,7 +9789,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9830,7 +9830,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9871,7 +9871,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9911,7 +9911,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9951,13 +9951,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-26-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_26_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "27", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_27_", "CVRSnapshot" : [ { - "@id" : "ballot-27", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10026,7 +10026,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-27-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10095,7 +10095,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10164,7 +10164,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10233,7 +10233,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10302,7 +10302,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10371,7 +10371,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10441,13 +10441,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-27-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_27_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "28", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_28_", "CVRSnapshot" : [ { - "@id" : "ballot-28", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10496,7 +10496,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-28-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10545,7 +10545,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10594,7 +10594,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10645,7 +10645,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10696,7 +10696,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10746,7 +10746,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10796,13 +10796,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-28-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_28_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "29", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_29_", "CVRSnapshot" : [ { - "@id" : "ballot-29", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10861,7 +10861,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-29-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10920,7 +10920,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10979,7 +10979,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11038,7 +11038,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11097,7 +11097,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11156,7 +11156,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11216,13 +11216,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-29-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_29_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "30", + "BallotPrePrintedId" : "test_set_multi_winner_fractional_threshold_cvr.json_30_", "CVRSnapshot" : [ { - "@id" : "ballot-30", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11291,7 +11291,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-30-round-1", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11360,7 +11360,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-2", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11429,7 +11429,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-3", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11498,7 +11498,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-4", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11567,7 +11567,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-5", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11636,7 +11636,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-6", + "@id" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11706,7 +11706,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-30-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_fractional_threshold_cvr.json_30_-round-6", "ElectionId" : "election-001" } ], "Election" : [ { @@ -11763,7 +11763,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:34:33-07:00", + "GeneratedDate" : "2025-01-21T04:24:32-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", diff --git a/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_whole_threshold/test_set_multi_winner_whole_threshold_expected_cdf_cvr.json b/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_whole_threshold/test_set_multi_winner_whole_threshold_expected_cdf_cvr.json index 7cf3b61a..c2dcf729 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_whole_threshold/test_set_multi_winner_whole_threshold_expected_cdf_cvr.json +++ b/src/test/resources/network/brightspots/rcv/test_data/test_set_multi_winner_whole_threshold/test_set_multi_winner_whole_threshold_expected_cdf_cvr.json @@ -2,9 +2,9 @@ "@type" : "CVR.CastVoteRecordReport", "CVR" : [ { "@type" : "CVR", - "BallotPrePrintedId" : "1", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_1_", "CVRSnapshot" : [ { - "@id" : "ballot-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -63,7 +63,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-1-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -122,7 +122,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -181,7 +181,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -240,7 +240,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -299,7 +299,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -358,7 +358,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-1-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -418,13 +418,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-1-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_1_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "2", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_2_", "CVRSnapshot" : [ { - "@id" : "ballot-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -493,7 +493,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-2-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -562,7 +562,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -633,7 +633,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -704,7 +704,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -775,7 +775,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -846,7 +846,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-2-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -917,13 +917,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-2-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_2_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "3", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_3_", "CVRSnapshot" : [ { - "@id" : "ballot-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -992,7 +992,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-3-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1061,7 +1061,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1132,7 +1132,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1203,7 +1203,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1274,7 +1274,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1345,7 +1345,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-3-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1416,13 +1416,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-3-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_3_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "4", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_4_", "CVRSnapshot" : [ { - "@id" : "ballot-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1471,7 +1471,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-4-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1520,7 +1520,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1569,7 +1569,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1618,7 +1618,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1667,7 +1667,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1716,7 +1716,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-4-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1766,13 +1766,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-4-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_4_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "5", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_5_", "CVRSnapshot" : [ { - "@id" : "ballot-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1801,7 +1801,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-5-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1830,7 +1830,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1859,7 +1859,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1888,7 +1888,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1917,7 +1917,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1946,7 +1946,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-5-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -1976,13 +1976,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-5-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_5_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "6", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_6_", "CVRSnapshot" : [ { - "@id" : "ballot-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2051,7 +2051,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-6-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2120,7 +2120,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2189,7 +2189,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2258,7 +2258,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2327,7 +2327,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2396,7 +2396,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-6-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2466,13 +2466,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-6-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_6_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "7", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_7_", "CVRSnapshot" : [ { - "@id" : "ballot-7", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2521,7 +2521,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-7-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2570,7 +2570,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2619,7 +2619,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2668,7 +2668,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2717,7 +2717,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2766,7 +2766,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-7-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2816,13 +2816,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-7-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_7_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "8", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_8_", "CVRSnapshot" : [ { - "@id" : "ballot-8", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2881,7 +2881,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-8-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2940,7 +2940,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -2999,7 +2999,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3058,7 +3058,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3117,7 +3117,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3176,7 +3176,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-8-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3236,13 +3236,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-8-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_8_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "9", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_9_", "CVRSnapshot" : [ { - "@id" : "ballot-9", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3301,7 +3301,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-9-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3360,7 +3360,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3421,7 +3421,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3482,7 +3482,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3543,7 +3543,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3604,7 +3604,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-9-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3665,13 +3665,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-9-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_9_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "10", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_10_", "CVRSnapshot" : [ { - "@id" : "ballot-10", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3690,7 +3690,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-10-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3709,7 +3709,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3728,7 +3728,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3747,7 +3747,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3766,7 +3766,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3785,7 +3785,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-10-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3804,13 +3804,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-10-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_10_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "11", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_11_", "CVRSnapshot" : [ { - "@id" : "ballot-11", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3849,7 +3849,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-11-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3888,7 +3888,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3929,7 +3929,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -3970,7 +3970,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4011,7 +4011,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4051,7 +4051,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-11-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4091,13 +4091,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-11-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_11_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "12", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_12_", "CVRSnapshot" : [ { - "@id" : "ballot-12", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4162,7 +4162,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-12-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4227,7 +4227,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4292,7 +4292,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4357,7 +4357,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4422,7 +4422,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4487,7 +4487,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-12-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4553,13 +4553,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-12-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_12_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "13", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_13_", "CVRSnapshot" : [ { - "@id" : "ballot-13", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4608,7 +4608,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-13-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4657,7 +4657,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4708,7 +4708,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4759,7 +4759,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4810,7 +4810,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4860,7 +4860,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-13-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4910,13 +4910,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-13-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_13_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "14", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_14_", "CVRSnapshot" : [ { - "@id" : "ballot-14", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -4975,7 +4975,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-14-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5034,7 +5034,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5095,7 +5095,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5156,7 +5156,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5217,7 +5217,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5278,7 +5278,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-14-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5339,13 +5339,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-14-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_14_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "15", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_15_", "CVRSnapshot" : [ { - "@id" : "ballot-15", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5414,7 +5414,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-15-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5483,7 +5483,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5552,7 +5552,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5621,7 +5621,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5690,7 +5690,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5759,7 +5759,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-15-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5829,13 +5829,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-15-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_15_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "16", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_16_", "CVRSnapshot" : [ { - "@id" : "ballot-16", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5884,7 +5884,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-16-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5933,7 +5933,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -5982,7 +5982,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6031,7 +6031,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6080,7 +6080,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6129,7 +6129,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-16-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6178,13 +6178,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-16-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_16_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "17", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_17_", "CVRSnapshot" : [ { - "@id" : "ballot-17", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6253,7 +6253,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-17-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6322,7 +6322,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6391,7 +6391,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6460,7 +6460,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6529,7 +6529,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6598,7 +6598,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-17-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6668,13 +6668,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-17-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_17_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "18", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_18_", "CVRSnapshot" : [ { - "@id" : "ballot-18", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6743,7 +6743,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-18-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6812,7 +6812,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6883,7 +6883,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -6954,7 +6954,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7025,7 +7025,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7096,7 +7096,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-18-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7167,13 +7167,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-18-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_18_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "19", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_19_", "CVRSnapshot" : [ { - "@id" : "ballot-19", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7222,7 +7222,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-19-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7271,7 +7271,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7320,7 +7320,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7369,7 +7369,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7418,7 +7418,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7467,7 +7467,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-19-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7517,13 +7517,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-19-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_19_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "20", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_20_", "CVRSnapshot" : [ { - "@id" : "ballot-20", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7552,7 +7552,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-20-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7581,7 +7581,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7610,7 +7610,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7639,7 +7639,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7668,7 +7668,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7697,7 +7697,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-20-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7727,13 +7727,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-20-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_20_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "21", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_21_", "CVRSnapshot" : [ { - "@id" : "ballot-21", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7802,7 +7802,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-21-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7871,7 +7871,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -7940,7 +7940,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8009,7 +8009,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8078,7 +8078,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8147,7 +8147,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-21-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8217,13 +8217,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-21-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_21_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "22", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_22_", "CVRSnapshot" : [ { - "@id" : "ballot-22", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8272,7 +8272,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-22-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8321,7 +8321,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8370,7 +8370,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8419,7 +8419,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8468,7 +8468,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8517,7 +8517,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-22-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8567,13 +8567,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-22-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_22_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "23", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_23_", "CVRSnapshot" : [ { - "@id" : "ballot-23", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8632,7 +8632,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-23-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8691,7 +8691,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8750,7 +8750,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8809,7 +8809,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8868,7 +8868,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8927,7 +8927,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-23-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -8987,13 +8987,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-23-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_23_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "24", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_24_", "CVRSnapshot" : [ { - "@id" : "ballot-24", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9062,7 +9062,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-24-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9131,7 +9131,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9200,7 +9200,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9269,7 +9269,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9338,7 +9338,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9407,7 +9407,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-24-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9477,13 +9477,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-24-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_24_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "25", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_25_", "CVRSnapshot" : [ { - "@id" : "ballot-25", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9512,7 +9512,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-25-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9541,7 +9541,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9570,7 +9570,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9599,7 +9599,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9628,7 +9628,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9657,7 +9657,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-25-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9687,13 +9687,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-25-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_25_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "26", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_26_", "CVRSnapshot" : [ { - "@id" : "ballot-26", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9732,7 +9732,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-26-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9771,7 +9771,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9812,7 +9812,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9853,7 +9853,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9894,7 +9894,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9934,7 +9934,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-26-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -9974,13 +9974,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-26-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_26_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "27", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_27_", "CVRSnapshot" : [ { - "@id" : "ballot-27", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10049,7 +10049,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-27-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10118,7 +10118,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10187,7 +10187,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10256,7 +10256,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10325,7 +10325,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10394,7 +10394,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-27-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10464,13 +10464,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-27-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_27_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "28", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_28_", "CVRSnapshot" : [ { - "@id" : "ballot-28", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10519,7 +10519,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-28-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10568,7 +10568,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10619,7 +10619,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10670,7 +10670,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10721,7 +10721,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10771,7 +10771,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-28-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10821,13 +10821,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-28-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_28_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "29", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_29_", "CVRSnapshot" : [ { - "@id" : "ballot-29", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10886,7 +10886,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-29-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -10945,7 +10945,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11004,7 +11004,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11063,7 +11063,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11122,7 +11122,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11181,7 +11181,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-29-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11241,13 +11241,13 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-29-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_29_-round-6", "ElectionId" : "election-001" }, { "@type" : "CVR", - "BallotPrePrintedId" : "30", + "BallotPrePrintedId" : "test_set_multi_winner_whole_threshold_cvr.json_30_", "CVRSnapshot" : [ { - "@id" : "ballot-30", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11316,7 +11316,7 @@ } ], "Type" : "original" }, { - "@id" : "ballot-30-round-1", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-1", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11385,7 +11385,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-2", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-2", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11454,7 +11454,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-3", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-3", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11523,7 +11523,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-4", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-4", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11592,7 +11592,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-5", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-5", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11661,7 +11661,7 @@ } ], "Type" : "interpreted" }, { - "@id" : "ballot-30-round-6", + "@id" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-6", "@type" : "CVR.CVRSnapshot", "CVRContest" : [ { "@type" : "CVR.CVRContest", @@ -11731,7 +11731,7 @@ } ], "Type" : "interpreted" } ], - "CurrentSnapshotId" : "ballot-30-round-6", + "CurrentSnapshotId" : "ballot-test_set_multi_winner_whole_threshold_cvr.json_30_-round-6", "ElectionId" : "election-001" } ], "Election" : [ { @@ -11788,7 +11788,7 @@ } ], "ElectionScopeId" : "gpu-election" } ], - "GeneratedDate" : "2020-10-03T14:38:02-07:00", + "GeneratedDate" : "2025-01-21T04:25:22-05:00", "GpUnit" : [ { "@id" : "gpu-election", "@type" : "GpUnit", From 944d6ee4c7857e166a2f90e327e7b1d951c4631f Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Fri, 24 Jan 2025 08:06:59 -0500 Subject: [PATCH 08/11] Added unit tests for CastVoteRecord's getId() and getSuppliedId() methods. --- .../brightspots/rcv/CastVoteRecordTests.java | 196 ++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 src/test/java/network/brightspots/rcv/CastVoteRecordTests.java diff --git a/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java b/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java new file mode 100644 index 00000000..ef4aab8e --- /dev/null +++ b/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java @@ -0,0 +1,196 @@ +/* + * RCTab + * Copyright (c) 2025 Ranked Choice Voting Resource Center. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + +/* + * Purpose: These unit tests test various components of the CastVoteRecord class. + * Design: Passing these tests ensures that changes to code have not altered how the CastVoteRecord + * class works in unexpected ways. (Warning: these unit tests do not provide full test coverage of + * the CastVoteRecord class.) + * Conditions: During automated testing. + * Version history: see https://github.com/BrightSpots/rcv. + */ + +package network.brightspots.rcv; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.util.ArrayList; +import java.util.List; +import javafx.util.Pair; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Nested; +import org.junit.jupiter.api.Test; + +/** + * Unit tests for the CastVoteRecord. + */ +public class CastVoteRecordTests { + String defaultComputedId = "computed123"; + String defualtSuppliedId = "supplied456"; + String idWithSpecialCharacters = "~!@#$%^&*(){}|:<>?[]`,./"; + String precinct = "precinct1"; + String batchId = "batch1"; + boolean usesLastAllowedRanking = false; + List> rankings = new ArrayList<>(); + + @Nested + @DisplayName("getId() tests") + class GetIdTests { + @Test + @DisplayName("returns computedId when present and not blank") + void returnsComputedIdWhenPresent() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + defaultComputedId, + defualtSuppliedId, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = defaultComputedId; + String actualId = cvr.getId(); + + // Assert + assertEquals(expectId, actualId); + } + + @Test + @DisplayName("returns suppliedId when computedId is null") + void returnsSuppliedIdWhenComputedIdNull() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + null, + defualtSuppliedId, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = defualtSuppliedId; + String actualId = cvr.getId(); + + // Assert + assertEquals(expectId, actualId); + } + + @Test + @DisplayName("returns suppliedId when computedId is blank") + void returnsSuppliedIdWhenComputedIdBlank() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + "", + defualtSuppliedId, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = defualtSuppliedId; + String actualId = cvr.getId(); + + // Assert + assertEquals(expectId, actualId); + } + + @Test + @DisplayName("returns computedId with special characters exactly as is") + void handlesSpecialCharactersInComputedId() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + idWithSpecialCharacters, + defualtSuppliedId, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = idWithSpecialCharacters; + String actualId = cvr.getId(); + + // Assert + assertEquals(expectId, actualId); + } + } + + @Nested + @DisplayName("getSuppliedId() tests") + class GetSuppliedIdTests { + @Test + @DisplayName("returns suppliedId when present") + void returnsSuppliedIdWhenPresent() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + defaultComputedId, + defualtSuppliedId, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = defualtSuppliedId; + String actualId = cvr.getSuppliedId(); + + // Assert + assertEquals(expectId, actualId); + } + + @Test + @DisplayName("returns empty string when suppliedId is null") + void returnsEmptyStringWhenNull() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + defaultComputedId, + null, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = ""; + String actualId = cvr.getSuppliedId(); + + // Assert + assertEquals(expectId, actualId); + } + + @Test + @DisplayName("returns suppliedId with special characters exactly as is") + void handlesSpecialCharacters() { + // Arrange + CastVoteRecord cvr = new CastVoteRecord( + defaultComputedId, + idWithSpecialCharacters, + precinct, + batchId, + usesLastAllowedRanking, + rankings + ); + + // Act + String expectId = idWithSpecialCharacters; + String actualId = cvr.getSuppliedId(); + + // Assert + assertEquals(expectId, actualId); + } + } +} From 9e40a87ba89015eae0dc160366dcb2d77ec84702 Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Fri, 24 Jan 2025 08:13:31 -0500 Subject: [PATCH 09/11] Removing TODOs associated with this PR --- src/main/java/network/brightspots/rcv/BaseCvrReader.java | 1 - src/main/java/network/brightspots/rcv/OutputWriter.java | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/BaseCvrReader.java b/src/main/java/network/brightspots/rcv/BaseCvrReader.java index 1d8592b5..df7b30bc 100644 --- a/src/main/java/network/brightspots/rcv/BaseCvrReader.java +++ b/src/main/java/network/brightspots/rcv/BaseCvrReader.java @@ -56,7 +56,6 @@ public void runAdditionalValidations(List castVoteRecords) if (!isRankingAllowed(maxRanking, cvr.getContestId())) { Logger.severe( "CVR \"%s\" has a ranking %d, but contest \"%s\" has max ranking %s!", - // TODO: Do we want this to use the getSuppliedId or the getId method? cvr.getId(), maxRanking, cvr.getContestId(), config.getMaxRankingsAllowedAsString()); throw new CastVoteRecord.CvrParseException(); } diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index 0d59710b..46f324ea 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -877,7 +877,6 @@ private List> generateCdfMapForCvrs(List cas for (CastVoteRecord cvr : castVoteRecords) { List> cvrSnapshots = new LinkedList<>(); cvrSnapshots.add(generateCvrSnapshotMap(cvr, null, null)); - // TODO: Do we want this to use the getSuppliedId or the getId method? String sanitizedId = sanitizeStringForOutput(cvr.getId()); // copy most recent round snapshot data to subsequent rounds // until more snapshot data is available @@ -984,7 +983,6 @@ private Map generateCvrSnapshotMap( entry("@type", "CVR.CVRContest")); return Map.ofEntries( - // TODO: Do we want this to use the getSuppliedId or the getId method? entry("@id", generateCvrSnapshotId(sanitizeStringForOutput(cvr.getId()), round)), entry("CVRContest", new Map[] {contestMap}), entry("Type", round != null ? "interpreted" : "original"), From cf52345b6f05058b88f7d187801e2dff47ce954d Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Fri, 31 Jan 2025 09:28:39 -0500 Subject: [PATCH 10/11] CastVoteRecord's getSuppliedId now returns null when the suppliedId is null. Null handling is now handled where getSuppliedId is called. --- src/main/java/network/brightspots/rcv/CastVoteRecord.java | 2 +- src/main/java/network/brightspots/rcv/OutputWriter.java | 3 ++- .../java/network/brightspots/rcv/CastVoteRecordTests.java | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/CastVoteRecord.java b/src/main/java/network/brightspots/rcv/CastVoteRecord.java index 76e11351..4f39492f 100644 --- a/src/main/java/network/brightspots/rcv/CastVoteRecord.java +++ b/src/main/java/network/brightspots/rcv/CastVoteRecord.java @@ -134,7 +134,7 @@ String getId() { } String getSuppliedId() { - return suppliedId != null ? suppliedId : ""; + return suppliedId; } // logs the outcome for this CVR for this round for auditing purposes diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index 46f324ea..da24b5ea 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -47,6 +47,7 @@ import java.util.List; import java.util.Map; import java.util.Map.Entry; +import java.util.Objects; import java.util.Set; import java.util.stream.Collectors; import javafx.util.Pair; @@ -744,7 +745,7 @@ String writeRcTabCvrCsv( csvPrinter.print(castVoteRecord.getId()); csvPrinter.print(castVoteRecord.getTabulatorId()); csvPrinter.print(castVoteRecord.getSlice(TabulateBySlice.BATCH)); - csvPrinter.print(castVoteRecord.getSuppliedId()); + csvPrinter.print(Objects.toString(castVoteRecord.getSuppliedId(), "")); csvPrinter.print(castVoteRecord.getSlice(ContestConfig.TabulateBySlice.PRECINCT)); csvPrinter.print(castVoteRecord.getPrecinctPortion()); printRankings(currentSourceData.source.getUndeclaredWriteInLabel(), maxRank, diff --git a/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java b/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java index ef4aab8e..dd42a07e 100644 --- a/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java +++ b/src/test/java/network/brightspots/rcv/CastVoteRecordTests.java @@ -19,6 +19,7 @@ package network.brightspots.rcv; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; import java.util.ArrayList; import java.util.List; @@ -152,8 +153,8 @@ void returnsSuppliedIdWhenPresent() { } @Test - @DisplayName("returns empty string when suppliedId is null") - void returnsEmptyStringWhenNull() { + @DisplayName("returns null when suppliedId is null") + void returnsNullWhenSuppliedIdIsNull() { // Arrange CastVoteRecord cvr = new CastVoteRecord( defaultComputedId, @@ -165,11 +166,10 @@ void returnsEmptyStringWhenNull() { ); // Act - String expectId = ""; String actualId = cvr.getSuppliedId(); // Assert - assertEquals(expectId, actualId); + assertNull(actualId); } @Test From f4272c9620df4415c6f21ea3e1d515c2d0f7b91d Mon Sep 17 00:00:00 2001 From: Malachi Gruenhagen <68450431+nurse-the-code@users.noreply.github.com> Date: Fri, 7 Feb 2025 13:21:10 -0500 Subject: [PATCH 11/11] Updated rctab_cvr.csv headers --- .../network/brightspots/rcv/OutputWriter.java | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/main/java/network/brightspots/rcv/OutputWriter.java b/src/main/java/network/brightspots/rcv/OutputWriter.java index da24b5ea..d88d3073 100644 --- a/src/main/java/network/brightspots/rcv/OutputWriter.java +++ b/src/main/java/network/brightspots/rcv/OutputWriter.java @@ -698,17 +698,18 @@ String writeRcTabCvrCsv( csvPrinter = new CSVPrinter(writer, format); // print header: // RCTab CVR Id, ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, - // rank 1 selection, rank 2 selection, ... rank maxRanks selection - csvPrinter.print("Source Filepath"); - csvPrinter.print("CVR Provider"); - csvPrinter.print("Contest Id"); - csvPrinter.print("RCTab CVR Id"); - csvPrinter.print("Tabulator Id"); - csvPrinter.print("Batch Id"); - csvPrinter.print("Vendor Id"); + csvPrinter.print("Source Filepath"); // CvrSource.getFilePath() + csvPrinter.print("CVR Provider"); // CvrSource.getProvider() + csvPrinter.print("Contest Id"); // CastVoteRecord.getContestId() + csvPrinter.print("RCTab CVR Id"); // CastVoteRecord.getId() + csvPrinter.print("Tabulator Id"); // CastVoteRecord.getTabulatorId + csvPrinter.print("Batch Id"); // CastVoteRecord.getSlice(TabulateBySlice.BATCH) + csvPrinter.print("Vendor Id"); // CastVoteRecord.getSuppliedId + // CastVoteRecord.getSlice(ContestConfig.TabulateBySlice.PRECINCT) csvPrinter.print("Precinct"); - csvPrinter.print("Precinct Portion"); + csvPrinter.print("Precinct Portion"); // CastVoteRecord.castVoteRecord.getPrecinctPortion() + // rank 1 selection, rank 2 selection, ... rank maxRanks selection int maxRank; if (config.isMaxRankingsSetToMaximum()) { maxRank = config.getNumDeclaredCandidates();