From ccc2defde806d6fa73ced1f263105959792ba9ff Mon Sep 17 00:00:00 2001 From: Armin Samii Date: Wed, 10 Jul 2024 12:46:02 -0700 Subject: [PATCH] Updates to the per-slice CSV --- .gitattributes | 2 +- .../brightspots/rcv/ResultsWriter.java | 66 ++++++++++++------- .../network/brightspots/rcv/Tabulator.java | 5 +- ...MINNEAPOLIS_W-13_P-09_precinct_summary.csv | 42 ++++++------ ..._MINNEAPOLIS_W-1_P-01_precinct_summary.csv | 42 ++++++------ ...MINNEAPOLIS_W-13_P-13_precinct_summary.csv | 18 ++--- ..._MINNEAPOLIS_W-1_P-01_precinct_summary.csv | 20 +++--- ...MINNEAPOLIS_W-13_P-13_precinct_summary.csv | 12 ++-- ...d_missing_precinct_id_precinct_summary.csv | 12 ++-- ..._MINNEAPOLIS_W-1_P-02_precinct_summary.csv | 22 ++++--- 10 files changed, 137 insertions(+), 104 deletions(-) diff --git a/.gitattributes b/.gitattributes index fcadb2cf9..176a458f9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -* text eol=lf +* text=auto diff --git a/src/main/java/network/brightspots/rcv/ResultsWriter.java b/src/main/java/network/brightspots/rcv/ResultsWriter.java index 9c7386597..cb1ce50b6 100644 --- a/src/main/java/network/brightspots/rcv/ResultsWriter.java +++ b/src/main/java/network/brightspots/rcv/ResultsWriter.java @@ -258,9 +258,11 @@ ResultsWriter setTimestampString(String timestampString) { // creates summary files for the votes split by a TabulateBySlice // param: roundTalliesBySlice is map from a slice type to the round-by-round vote tallies // param: tallyTransfersBySlice is a map from a slice type to tally transfers for that slice + // param: candidateOrder is to allow a consistent ordering of candidates, including across slices void generateBySliceSummaryFiles( Tabulator.BreakdownBySlice roundTalliesBySlice, - Tabulator.BreakdownBySlice tallyTransfersBySlice) + Tabulator.BreakdownBySlice tallyTransfersBySlice, + List candidateOrder) throws IOException { for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { Set filenames = new HashSet<>(); @@ -271,7 +273,7 @@ void generateBySliceSummaryFiles( String sliceFileString = getFileStringForSlice(slice, sliceId, filenames); String outputPath = getOutputFilePathFromInstance( String.format("%s_summary", sliceFileString)); - generateSummarySpreadsheet(roundTallies, slice, sliceId, outputPath); + generateSummarySpreadsheet(roundTallies, candidateOrder, slice, sliceId, outputPath); generateSummaryJson(roundTallies, tallyTransfers, slice, sliceId, outputPath); } } @@ -279,12 +281,16 @@ void generateBySliceSummaryFiles( // create a summary spreadsheet .csv file // param: roundTallies is the round-by-count count of votes per candidate + // param: candidateOrder is to allow a consistent ordering of candidates, including across slices // param: slice indicates which type of slice we're reporting results for (null means all) // param: sliceId indicates the specific slice ID we're reporting results for (null means all) // param: outputPath is the path to the output file, minus its extension private void generateSummarySpreadsheet( - RoundTallies roundTallies, TabulateBySlice slice, String sliceId, String outputPath) - throws IOException { + RoundTallies roundTallies, + List candidateOrder, + TabulateBySlice slice, + String sliceId, + String outputPath) throws IOException { AuditableFile csvFile = new AuditableFile(outputPath + ".csv"); Logger.info("Generating summary spreadsheet: %s...", csvFile.getAbsolutePath()); @@ -310,16 +316,11 @@ private void generateSummarySpreadsheet( } csvPrinter.println(); - // actions don't make sense in individual by-slice results - if (isNullOrBlank(sliceId)) { - addActionRows(csvPrinter); - } - - // Get all candidates sorted by their first round tally. This determines the display order. - List sortedCandidates = roundTallies.get(1).getSortedCandidatesByTally(); + boolean isSlice = !isNullOrBlank(sliceId); + addActionRows(csvPrinter, isSlice); // For each candidate: for each round: output total votes - for (String candidate : sortedCandidates) { + for (String candidate : candidateOrder) { String candidateDisplayName = config.getNameForCandidate(candidate); csvPrinter.print(candidateDisplayName); for (int round = 1; round <= numRounds; round++) { @@ -366,13 +367,15 @@ private void generateSummarySpreadsheet( } csvPrinter.println(); - csvPrinter.print("Current Round Threshold"); - for (int round = 1; round <= numRounds; round++) { - csvPrinter.print(roundTallies.get(round).getWinningThreshold()); - csvPrinter.print(""); - csvPrinter.print(""); + if (!isSlice) { + csvPrinter.print("Current Round Threshold"); + for (int round = 1; round <= numRounds; round++) { + csvPrinter.print(roundTallies.get(round).getWinningThreshold()); + csvPrinter.print(""); + csvPrinter.print(""); + } + csvPrinter.println(); } - csvPrinter.println(); Pair[] statusesToPrint = new Pair[] { @@ -447,6 +450,13 @@ private void generateSummarySpreadsheet( csvPrinter.println(); } + if (isSlice) { + csvPrinter.println(); + csvPrinter.print(String.format("*Elect/Eliminate decisions are from the full contest. " + + "All other results on this report are at the %s level.", slice.toLowerString())); + csvPrinter.println(); + } + try { csvPrinter.flush(); csvPrinter.close(); @@ -459,11 +469,11 @@ private void generateSummarySpreadsheet( } // "action" rows describe which candidates were eliminated or elected - private void addActionRows(CSVPrinter csvPrinter) throws IOException { - csvPrinter.print("Eliminated"); + private void addActionRows(CSVPrinter csvPrinter, boolean withAsterisk) throws IOException { + csvPrinter.print(withAsterisk ? "Eliminated*" : "Eliminated"); printActionSummary(csvPrinter, roundToEliminatedCandidates); - csvPrinter.print("Elected"); + csvPrinter.print(withAsterisk ? "Elected*" : "Elected"); printActionSummary(csvPrinter, roundToWinningCandidates); } @@ -533,19 +543,27 @@ private void addContestInformationRows(CSVPrinter csvPrinter, winners.add(config.getNameForCandidate(candidateName)); } } + csvPrinter.printRecord("Winner(s)", String.join(", ", winners)); - csvPrinter.printRecord("Final Threshold", winningThreshold); + if (!isNullOrBlank(sliceId)) { + // Only silces print the slice information csvPrinter.printRecord(slice, sliceId); + } else { + // Only non-silces print threshold information + csvPrinter.printRecord("Final Threshold", winningThreshold); } + csvPrinter.println(); } // creates a summary spreadsheet and JSON for the full contest (as opposed to a specific slice) void generateOverallSummaryFiles( - RoundTallies roundTallies, TallyTransfers tallyTransfers) throws IOException { + RoundTallies roundTallies, + TallyTransfers tallyTransfers, + List candidateOrder) throws IOException { String outputPath = getOutputFilePathFromInstance("summary"); - generateSummarySpreadsheet(roundTallies, null, null, outputPath); + generateSummarySpreadsheet(roundTallies, candidateOrder, null, null, outputPath); generateSummaryJson(roundTallies, tallyTransfers, null, null, outputPath); } diff --git a/src/main/java/network/brightspots/rcv/Tabulator.java b/src/main/java/network/brightspots/rcv/Tabulator.java index 907dbddba..e72f705c5 100644 --- a/src/main/java/network/brightspots/rcv/Tabulator.java +++ b/src/main/java/network/brightspots/rcv/Tabulator.java @@ -805,8 +805,9 @@ void generateSummaryFiles(String timestamp) throws IOException { .setSliceIds(sliceIds) .setRoundToResidualSurplus(roundToResidualSurplus); - writer.generateOverallSummaryFiles(roundTallies, tallyTransfers); - writer.generateBySliceSummaryFiles(roundTalliesBySlices, tallyTransfersBySlice); + List candidateOrder = roundTallies.get(1).getSortedCandidatesByTally(); + writer.generateOverallSummaryFiles(roundTallies, tallyTransfers, candidateOrder); + writer.generateBySliceSummaryFiles(roundTalliesBySlices, tallyTransfersBySlice, candidateOrder); if (config.isGenerateCdfJsonEnabled()) { try { diff --git a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv index 50702df6b..7dab91954 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,Minneapolis Office,Mayor Date, Winner(s),BETSY HODGES -Final Threshold,31898 Precinct,MINNEAPOLIS W-13 P-09 Contest Summary @@ -17,46 +16,49 @@ Total Number of Ballots,985 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer,Round 7 Votes,% of vote,transfer,Round 8 Votes,% of vote,transfer,Round 9 Votes,% of vote,transfer,Round 10 Votes,% of vote,transfer,Round 11 Votes,% of vote,transfer,Round 12 Votes,% of vote,transfer,Round 13 Votes,% of vote,transfer,Round 14 Votes,% of vote,transfer,Round 15 Votes,% of vote,transfer,Round 16 Votes,% of vote,transfer,Round 17 Votes,% of vote,transfer,Round 18 Votes,% of vote,transfer,Round 19 Votes,% of vote,transfer,Round 20 Votes,% of vote,transfer,Round 21 Votes,% of vote,transfer,Round 22 Votes,% of vote,transfer,Round 23 Votes,% of vote,transfer,Round 24 Votes,% of vote,transfer,Round 25 Votes,% of vote,transfer,Round 26 Votes,% of vote,transfer,Round 27 Votes,% of vote,transfer,Round 28 Votes,% of vote,transfer,Round 29 Votes,% of vote,transfer,Round 30 Votes,% of vote,transfer,Round 31 Votes,% of vote,transfer,Round 32 Votes,% of vote,transfer,Round 33 Votes,% of vote,transfer +Eliminated*,Undeclared Write-ins,,,JOHN CHARLES WILSON,,,CYD GORMAN,,,BOB AGAIN CARNEY JR,,,RAHN V. WORKCUFF,,,"JAMES JIMMY L. STROUD, JR.",,,EDMUND BERNARD BRUYERE,,,JOHN LESLIE HARTWIG,,,BILL KAHN,,,JOSHUA REA,,,MERRILL ANDERSON,,,GREGG A. IVERSON,,,TROY BENJEGERDES,,,NEAL BAXTER,,,JEFFREY ALAN WAGNER,,,CHRISTOPHER ROBIN ZIMMERMAN,,,KURTIS W. HANNA,,,MIKE GOULD,,,JAYMIE KELLY,,,TONY LANE,,,CHRISTOPHER CLARK,,,CAPTAIN JACK SPARROW,,,ABDUL M RAHAMAN THE ROCK,,,ALICIA K. BENNETT,,,JAMES EVERETT,,,OLE SAVIOR,,,DOUG MANN,,,MARK V ANDERSON,,,STEPHANIE WOODRUFF,,,DAN COHEN,,,JACKIE CHERRYHOMES; BOB FINE,,,DON SAMUELS; CAM WINTON,,,,, +Elected*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,BETSY HODGES,, BETSY HODGES,359,36.44%,0,359,36.44%,0,359,36.44%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.52%,0,359,36.52%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.63%,2,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,37.13%,0,361,37.13%,1,362,37.35%,2,364,37.6%,2,366,38.4%,23,389,41.33%,69,458,57.39%,0 MARK ANDREW,272,27.61%,0,272,27.61%,0,272,27.61%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.67%,0,272,27.67%,0,272,27.72%,0,272,27.72%,0,272,27.72%,1,273,27.82%,1,274,27.93%,0,274,27.93%,0,274,27.93%,0,274,27.93%,0,274,27.95%,1,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.29%,0,275,28.29%,2,277,28.58%,3,280,28.92%,4,284,29.8%,18,302,32.09%,38,340,42.6%,0 -CAM WINTON,150,15.22%,0,150,15.22%,0,150,15.22%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.25%,0,150,15.25%,1,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.4%,0,151,15.42%,1,152,15.52%,1,153,15.62%,0,153,15.62%,0,153,15.62%,0,153,15.62%,2,155,15.94%,1,156,16.04%,1,157,16.2%,1,158,16.32%,8,166,17.41%,6,172,18.27%,-172,0,0.0%,0 DON SAMUELS,69,7.0%,0,69,7.0%,0,69,7.0%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.09%,0,69,7.09%,0,69,7.12%,2,71,7.33%,0,71,7.45%,7,78,8.28%,-78,0,0.0%,0 +CAM WINTON,150,15.22%,0,150,15.22%,0,150,15.22%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.25%,0,150,15.25%,1,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.4%,0,151,15.42%,1,152,15.52%,1,153,15.62%,0,153,15.62%,0,153,15.62%,0,153,15.62%,2,155,15.94%,1,156,16.04%,1,157,16.2%,1,158,16.32%,8,166,17.41%,6,172,18.27%,-172,0,0.0%,0 JACKIE CHERRYHOMES,38,3.85%,0,38,3.85%,0,38,3.85%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.88%,0,38,3.88%,0,38,3.88%,0,38,3.88%,0,38,3.88%,1,39,3.98%,0,39,4.01%,0,39,4.01%,0,39,4.02%,0,39,4.02%,0,39,4.09%,-39,0,0.0%,0,0,0.0%,0 BOB FINE,26,2.63%,0,26,2.63%,0,26,2.63%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.67%,0,26,2.67%,0,26,2.68%,0,26,2.68%,1,27,2.83%,-27,0,0.0%,0,0,0.0%,0 DAN COHEN,25,2.53%,0,25,2.53%,0,25,2.53%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.55%,0,25,2.55%,1,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,2,28,2.88%,2,30,3.08%,0,30,3.09%,0,30,3.09%,-30,0,0.0%,0,0,0.0%,0,0,0.0%,0 STEPHANIE WOODRUFF,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,1,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.92%,0,9,0.92%,0,9,0.92%,-9,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -OLE SAVIOR,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,1,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,2,11,1.12%,0,11,1.12%,0,11,1.12%,0,11,1.12%,0,11,1.12%,-11,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 MARK V ANDERSON,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,1,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,1,7,0.71%,0,7,0.71%,0,7,0.71%,0,7,0.71%,0,7,0.71%,0,7,0.72%,0,7,0.72%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -CHRISTOPHER ROBIN ZIMMERMAN,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -TONY LANE,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,1,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 DOUG MANN,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -MERRILL ANDERSON,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +OLE SAVIOR,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,1,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,2,11,1.12%,0,11,1.12%,0,11,1.12%,0,11,1.12%,0,11,1.12%,-11,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ALICIA K. BENNETT,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ABDUL M RAHAMAN THE ROCK,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAMES EVERETT,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CAPTAIN JACK SPARROW,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TONY LANE,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,1,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MIKE GOULD,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +KURTIS W. HANNA,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAYMIE KELLY,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 CHRISTOPHER CLARK,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,4,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,-6,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -TROY BENJEGERDES,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CHRISTOPHER ROBIN ZIMMERMAN,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 JEFFREY ALAN WAGNER,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JAMES EVERETT,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TROY BENJEGERDES,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +GREGG A. IVERSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +NEAL BAXTER,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MERRILL ANDERSON,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOSHUA REA,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 BILL KAHN,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -CYD GORMAN,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 JOHN LESLIE HARTWIG,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JAYMIE KELLY,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -CAPTAIN JACK SPARROW,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -KURTIS W. HANNA,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -ABDUL M RAHAMAN THE ROCK,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 EDMUND BERNARD BRUYERE,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 RAHN V. WORKCUFF,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -GREGG A. IVERSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -NEAL BAXTER,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +"JAMES JIMMY L. STROUD, JR.",0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 BOB AGAIN CARNEY JR,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -ALICIA K. BENNETT,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -MIKE GOULD,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CYD GORMAN,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 JOHN CHARLES WILSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JOSHUA REA,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -"JAMES JIMMY L. STROUD, JR.",0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,985,,,985,,,985,,,984,,,984,,,984,,,984,,,984,,,984,,,983,,,983,,,981,,,981,,,981,,,981,,,981,,,981,,,981,,,981,,,980,,,979,,,979,,,979,,,979,,,979,,,979,,,972,,,972,,,969,,,968,,,953,,,941,,,798,, -Current Round Threshold,39657,,,39638,,,39635,,,39633,,,39627,,,39622,,,39614,,,39608,,,39599,,,39583,,,39568,,,39552,,,39533,,,39522,,,39502,,,39477,,,39462,,,39450,,,39414,,,39387,,,39359,,,39309,,,39247,,,39112,,,39041,,,38981,,,38726,,,38541,,,38312,,,38162,,,37796,,,36810,,,31898,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level. diff --git a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv index 60de8b1d0..ce448267c 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,Minneapolis Office,Mayor Date, Winner(s),BETSY HODGES -Final Threshold,31898 Precinct,MINNEAPOLIS W-1 P-01 Contest Summary @@ -17,46 +16,49 @@ Total Number of Ballots,517 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer,Round 7 Votes,% of vote,transfer,Round 8 Votes,% of vote,transfer,Round 9 Votes,% of vote,transfer,Round 10 Votes,% of vote,transfer,Round 11 Votes,% of vote,transfer,Round 12 Votes,% of vote,transfer,Round 13 Votes,% of vote,transfer,Round 14 Votes,% of vote,transfer,Round 15 Votes,% of vote,transfer,Round 16 Votes,% of vote,transfer,Round 17 Votes,% of vote,transfer,Round 18 Votes,% of vote,transfer,Round 19 Votes,% of vote,transfer,Round 20 Votes,% of vote,transfer,Round 21 Votes,% of vote,transfer,Round 22 Votes,% of vote,transfer,Round 23 Votes,% of vote,transfer,Round 24 Votes,% of vote,transfer,Round 25 Votes,% of vote,transfer,Round 26 Votes,% of vote,transfer,Round 27 Votes,% of vote,transfer,Round 28 Votes,% of vote,transfer,Round 29 Votes,% of vote,transfer,Round 30 Votes,% of vote,transfer,Round 31 Votes,% of vote,transfer,Round 32 Votes,% of vote,transfer,Round 33 Votes,% of vote,transfer -MARK ANDREW,160,30.94%,1,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.2%,0,161,31.26%,0,161,31.26%,0,161,31.26%,2,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.77%,1,164,32.09%,0,164,32.22%,0,164,32.6%,0,164,32.8%,0,164,33.19%,2,166,33.8%,1,167,34.71%,9,176,38.09%,15,191,50.66%,0 +Eliminated*,Undeclared Write-ins,,,JOHN CHARLES WILSON,,,CYD GORMAN,,,BOB AGAIN CARNEY JR,,,RAHN V. WORKCUFF,,,"JAMES JIMMY L. STROUD, JR.",,,EDMUND BERNARD BRUYERE,,,JOHN LESLIE HARTWIG,,,BILL KAHN,,,JOSHUA REA,,,MERRILL ANDERSON,,,GREGG A. IVERSON,,,TROY BENJEGERDES,,,NEAL BAXTER,,,JEFFREY ALAN WAGNER,,,CHRISTOPHER ROBIN ZIMMERMAN,,,KURTIS W. HANNA,,,MIKE GOULD,,,JAYMIE KELLY,,,TONY LANE,,,CHRISTOPHER CLARK,,,CAPTAIN JACK SPARROW,,,ABDUL M RAHAMAN THE ROCK,,,ALICIA K. BENNETT,,,JAMES EVERETT,,,OLE SAVIOR,,,DOUG MANN,,,MARK V ANDERSON,,,STEPHANIE WOODRUFF,,,DAN COHEN,,,JACKIE CHERRYHOMES; BOB FINE,,,DON SAMUELS; CAM WINTON,,,,, +Elected*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,BETSY HODGES,, BETSY HODGES,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.96%,0,134,26.01%,0,134,26.01%,0,134,26.01%,0,134,26.07%,0,134,26.07%,0,134,26.07%,0,134,26.07%,1,135,26.26%,0,135,26.31%,0,135,26.41%,1,136,26.71%,0,136,27.03%,5,141,28.2%,1,142,28.74%,4,146,29.73%,4,150,31.18%,10,160,34.63%,26,186,49.33%,0 +MARK ANDREW,160,30.94%,1,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.2%,0,161,31.26%,0,161,31.26%,0,161,31.26%,2,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.77%,1,164,32.09%,0,164,32.22%,0,164,32.6%,0,164,32.8%,0,164,33.19%,2,166,33.8%,1,167,34.71%,9,176,38.09%,15,191,50.66%,0 DON SAMUELS,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.07%,0,52,10.09%,0,52,10.09%,0,52,10.09%,0,52,10.11%,0,52,10.11%,0,52,10.11%,0,52,10.11%,0,52,10.11%,0,52,10.13%,0,52,10.17%,0,52,10.21%,0,52,10.33%,0,52,10.4%,0,52,10.52%,0,52,10.59%,2,54,11.22%,11,65,14.06%,-65,0,0.0%,0 CAM WINTON,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.1%,0,47,9.12%,1,48,9.32%,0,48,9.32%,0,48,9.33%,0,48,9.33%,0,48,9.33%,2,50,9.72%,0,50,9.72%,0,50,9.74%,0,50,9.78%,0,50,9.82%,0,50,9.94%,1,51,10.2%,0,51,10.32%,0,51,10.38%,2,53,11.01%,8,61,13.2%,-61,0,0.0%,0 JACKIE CHERRYHOMES,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,1,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.23%,0,27,5.24%,0,27,5.24%,0,27,5.24%,0,27,5.25%,0,27,5.25%,0,27,5.25%,0,27,5.25%,0,27,5.25%,0,27,5.26%,0,27,5.28%,0,27,5.3%,1,28,5.56%,0,28,5.6%,0,28,5.66%,0,28,5.7%,1,29,6.02%,-29,0,0.0%,0,0,0.0%,0 BOB FINE,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,1,24,4.64%,0,24,4.64%,0,24,4.65%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.67%,0,24,4.69%,0,24,4.71%,0,24,4.77%,0,24,4.8%,0,24,4.85%,3,27,5.49%,1,28,5.82%,-28,0,0.0%,0,0,0.0%,0 DAN COHEN,16,3.09%,0,16,3.09%,1,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,1,18,3.48%,0,18,3.48%,0,18,3.48%,0,18,3.48%,0,18,3.48%,0,18,3.49%,0,18,3.49%,0,18,3.49%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.52%,0,18,3.53%,1,19,3.77%,0,19,3.8%,0,19,3.84%,2,21,4.27%,-21,0,0.0%,0,0,0.0%,0,0,0.0%,0 STEPHANIE WOODRUFF,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,1,13,2.54%,0,13,2.55%,0,13,2.58%,1,14,2.8%,0,14,2.83%,-14,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -OLE SAVIOR,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.95%,0,10,1.96%,-10,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MARK V ANDERSON,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,2,5,0.97%,1,6,1.16%,0,6,1.16%,0,6,1.17%,0,6,1.17%,1,7,1.39%,0,7,1.4%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 DOUG MANN,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,1,7,1.35%,0,7,1.36%,0,7,1.36%,0,7,1.36%,0,7,1.36%,1,8,1.55%,0,8,1.55%,0,8,1.56%,1,9,1.76%,1,10,1.98%,-10,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -MIKE GOULD,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.97%,0,5,0.97%,0,5,0.97%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -CHRISTOPHER CLARK,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +OLE SAVIOR,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.95%,0,10,1.96%,-10,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ALICIA K. BENNETT,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,2,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ABDUL M RAHAMAN THE ROCK,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 JAMES EVERETT,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.78%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -MARK V ANDERSON,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,2,5,0.97%,1,6,1.16%,0,6,1.16%,0,6,1.17%,0,6,1.17%,1,7,1.39%,0,7,1.4%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 CAPTAIN JACK SPARROW,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -ALICIA K. BENNETT,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,2,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TONY LANE,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MIKE GOULD,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.97%,0,5,0.97%,0,5,0.97%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 KURTIS W. HANNA,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -ABDUL M RAHAMAN THE ROCK,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAYMIE KELLY,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CHRISTOPHER CLARK,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 CHRISTOPHER ROBIN ZIMMERMAN,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -EDMUND BERNARD BRUYERE,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -GREGG A. IVERSON,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JOHN LESLIE HARTWIG,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 JEFFREY ALAN WAGNER,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JOHN CHARLES WILSON,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JOSHUA REA,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -TONY LANE,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 TROY BENJEGERDES,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -BILL KAHN,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +GREGG A. IVERSON,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +NEAL BAXTER,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 MERRILL ANDERSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -CYD GORMAN,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOSHUA REA,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +BILL KAHN,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOHN LESLIE HARTWIG,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +EDMUND BERNARD BRUYERE,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 RAHN V. WORKCUFF,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -JAYMIE KELLY,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -NEAL BAXTER,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -BOB AGAIN CARNEY JR,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 "JAMES JIMMY L. STROUD, JR.",0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +BOB AGAIN CARNEY JR,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CYD GORMAN,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOHN CHARLES WILSON,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,516,,,515,,,515,,,515,,,514,,,514,,,514,,,514,,,514,,,513,,,511,,,509,,,503,,,500,,,494,,,491,,,481,,,462,,,377,, -Current Round Threshold,39657,,,39638,,,39635,,,39633,,,39627,,,39622,,,39614,,,39608,,,39599,,,39583,,,39568,,,39552,,,39533,,,39522,,,39502,,,39477,,,39462,,,39450,,,39414,,,39387,,,39359,,,39309,,,39247,,,39112,,,39041,,,38981,,,38726,,,38541,,,38312,,,38162,,,37796,,,36810,,,31898,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level. diff --git a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv index ff6c8bfac..8b53ddd06 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,"Minneapolis, MN" Office,Mayor Date,2017-11-07 Winner(s),Jacob Frey -Final Threshold,40838 Precinct,MINNEAPOLIS W-13 P-13 Contest Summary @@ -17,29 +16,32 @@ Total Number of Ballots,953 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer +Eliminated*,Undeclared Write-ins,,,Aswar Rahman; David Rosenfeld; L.A. Nik; Christopher Zimmerman; Ronald Lischeid; Ian Simpson; Charlie Gers; Captain Jack Sparrow; Theron Preston Washington; David John Wilson; Gregg A. Iverson; Troy Benjegerdes; Al Flowers,,,Nekima Levy-Pounds,,,Tom Hoch,,,Betsy Hodges,,,,, +Elected*,,,,,,,,,,,,,,,,Jacob Frey,, Jacob Frey,320,33.57%,0,320,33.61%,5,325,34.46%,14,339,36.1%,133,472,54.5%,120,592,75.03%,0 Tom Hoch,261,27.38%,0,261,27.41%,8,269,28.52%,11,280,29.81%,-280,0,0.0%,0,0,0.0%,0 Betsy Hodges,195,20.46%,0,195,20.48%,1,196,20.78%,12,208,22.15%,50,258,29.79%,-258,0,0.0%,0 Raymond Dehn,82,8.6%,0,82,8.61%,1,83,8.8%,29,112,11.92%,24,136,15.7%,61,197,24.96%,0 Nekima Levy-Pounds,68,7.13%,0,68,7.14%,2,70,7.42%,-70,0,0.0%,0,0,0.0%,0,0,0.0%,0 Charlie Gers,12,1.25%,0,12,1.26%,-12,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -L.A. Nik,5,0.52%,0,5,0.52%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -David John Wilson,3,0.31%,0,3,0.31%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Gregg A. Iverson,2,0.2%,1,3,0.31%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Aswar Rahman,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Captain Jack Sparrow,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Al Flowers,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,5,0.52%,0,5,0.52%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,2,0.2%,1,3,0.31%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,3,0.31%,0,3,0.31%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,953,,,952,,,943,,,939,,,866,,,789,, -Current Round Threshold,52243,,,52200,,,50933,,,49874,,,46790,,,40838,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level. diff --git a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv index 2736ccf62..47aa386dc 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,"Minneapolis, MN" Office,Mayor Date,2017-11-07 Winner(s),Jacob Frey -Final Threshold,40838 Precinct,MINNEAPOLIS W-1 P-01 Contest Summary @@ -17,29 +16,32 @@ Total Number of Ballots,408 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer +Eliminated*,Undeclared Write-ins,,,Aswar Rahman; David Rosenfeld; L.A. Nik; Christopher Zimmerman; Ronald Lischeid; Ian Simpson; Charlie Gers; Captain Jack Sparrow; Theron Preston Washington; David John Wilson; Gregg A. Iverson; Troy Benjegerdes; Al Flowers,,,Nekima Levy-Pounds,,,Tom Hoch,,,Betsy Hodges,,,,, +Elected*,,,,,,,,,,,,,,,,Jacob Frey,, Jacob Frey,95,23.28%,0,95,23.34%,10,105,26.99%,24,129,34.03%,28,157,45.11%,36,193,63.48%,0 Tom Hoch,77,18.87%,0,77,18.91%,7,84,21.59%,5,89,23.48%,-89,0,0.0%,0,0,0.0%,0 -Nekima Levy-Pounds,69,16.91%,0,69,16.95%,5,74,19.02%,-74,0,0.0%,0,0,0.0%,0,0,0.0%,0 Betsy Hodges,64,15.68%,0,64,15.72%,3,67,17.22%,17,84,22.16%,11,95,27.29%,-95,0,0.0%,0 Raymond Dehn,56,13.72%,0,56,13.75%,3,59,15.16%,18,77,20.31%,19,96,27.58%,15,111,36.51%,0 -Aswar Rahman,9,2.2%,0,9,2.21%,-9,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -L.A. Nik,7,1.71%,0,7,1.71%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Nekima Levy-Pounds,69,16.91%,0,69,16.95%,5,74,19.02%,-74,0,0.0%,0,0,0.0%,0,0,0.0%,0 Charlie Gers,5,1.22%,0,5,1.22%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Aswar Rahman,9,2.2%,0,9,2.21%,-9,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Al Flowers,5,1.22%,0,5,1.22%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Captain Jack Sparrow,4,0.98%,0,4,0.98%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,7,1.71%,0,7,1.71%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 David Rosenfeld,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Ronald Lischeid,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Ian Simpson,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,4,0.98%,0,4,0.98%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Gregg A. Iverson,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Troy Benjegerdes,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ronald Lischeid,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 David John Wilson,1,0.24%,0,1,0.24%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ian Simpson,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,1,0.24%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,408,,,407,,,389,,,379,,,348,,,304,, -Current Round Threshold,52243,,,52200,,,50933,,,49874,,,46790,,,40838,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level. diff --git a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv index 42a93dfb7..ee8e93ede 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,"Minneapolis, MN" Office,Mayor Date,2017-11-07 Winner(s),Jacob Frey -Final Threshold,3 Precinct,MINNEAPOLIS W-13 P-13 Contest Summary @@ -17,15 +16,18 @@ Total Number of Ballots,1 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer +Eliminated*,Aswar Rahman; David Rosenfeld; Raymond Dehn; L.A. Nik; Undeclared Write-ins; Christopher Zimmerman; Ronald Lischeid; Ian Simpson; Charlie Gers; Captain Jack Sparrow; Theron Preston Washington; David John Wilson; Gregg A. Iverson; Troy Benjegerdes; Al Flowers,,,Nekima Levy-Pounds,,,Tom Hoch,,,,, +Elected*,,,,,,,,,,Jacob Frey,, Tom Hoch,1,100.0%,0,1,100.0%,0,1,100.0%,-1,0,0.0%,0 +Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Jacob Frey,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,100.0%,0 +Nekima Levy-Pounds,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Raymond Dehn,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Jacob Frey,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,100.0%,0 Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Captain Jack Sparrow,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 @@ -34,12 +36,12 @@ David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Nekima Levy-Pounds,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,1,,,1,,,1,,,1,, -Current Round Threshold,3,,,3,,,3,,,3,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level. diff --git a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv index a48131f56..a06ec9258 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,"Minneapolis, MN" Office,Mayor Date,2017-11-07 Winner(s),Jacob Frey -Final Threshold,3 Precinct,missing_precinct_id Contest Summary @@ -17,14 +16,17 @@ Total Number of Ballots,1 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer +Eliminated*,Aswar Rahman; David Rosenfeld; Raymond Dehn; L.A. Nik; Undeclared Write-ins; Christopher Zimmerman; Ronald Lischeid; Ian Simpson; Charlie Gers; Captain Jack Sparrow; Theron Preston Washington; David John Wilson; Gregg A. Iverson; Troy Benjegerdes; Al Flowers,,,Nekima Levy-Pounds,,,Tom Hoch,,,,, +Elected*,,,,,,,,,,Jacob Frey,, +Tom Hoch,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Jacob Frey,1,100.0%,0,1,100.0%,0,1,100.0%,0,1,100.0%,0 +Nekima Levy-Pounds,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Tom Hoch,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Raymond Dehn,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 @@ -34,12 +36,12 @@ David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Nekima Levy-Pounds,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,1,,,1,,,1,,,1,, -Current Round Threshold,3,,,3,,,3,,,3,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level. diff --git a/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv index 8b28f664b..e21788c70 100644 --- a/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv +++ b/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv @@ -7,7 +7,6 @@ Jurisdiction,"Minneapolis, MN" Office,Mayor Date,2017-11-07 Winner(s),Betsy Hodges -Final Threshold,42 Precinct,MINNEAPOLIS W-1 P-02 Contest Summary @@ -17,29 +16,32 @@ Total Number of Ballots,1 Number of Undervotes,0 Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer -Nekima Levy-Pounds,1,100.0%,0,1,100.0%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Eliminated*,Undeclared Write-ins,,,Aswar Rahman; David Rosenfeld; L.A. Nik; Christopher Zimmerman; Ronald Lischeid; Ian Simpson; Charlie Gers; Captain Jack Sparrow; Theron Preston Washington; David John Wilson; Gregg A. Iverson; Troy Benjegerdes; Al Flowers; Nekima Levy-Pounds,,,Tom Hoch,,,Raymond Dehn,,,,, +Elected*,,,,,,,,,,,,,Betsy Hodges,, +Jacob Frey,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,100.0%,0,1,100.0%,0 Tom Hoch,0,0.0%,0,0,0.0%,1,1,100.0%,-1,0,0.0%,0,0,0.0%,0 -David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Raymond Dehn,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Nekima Levy-Pounds,1,100.0%,0,1,100.0%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,100.0%,0,1,100.0%,0 Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Jacob Frey,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Captain Jack Sparrow,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 -Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 Active Ballots,1,,,1,,,1,,,1,,,1,, -Current Round Threshold,50,,,50,,,49,,,46,,,42,, Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0 Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0 + +*Elect/Eliminate decisions are from the full contest. All other results on this report are at the precinct level.