Skip to content

Instantly share code, notes, and snippets.

@RichardMN
Last active October 21, 2015 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichardMN/53571e487a81ff1d00bd to your computer and use it in GitHub Desktop.
Save RichardMN/53571e487a81ff1d00bd to your computer and use it in GitHub Desktop.
Electoral Cartogram of Preliminary Results of the 42nd Canadian General Election

This is an electoral cartogram for Canada using a hexagon grid, with one hexagon for each of the 338 ridings in Canada at the 2015 general election, modified to show the preliminary results.

The code based on Stephen McMurtry's excellent interactive map, with major changes so that it now uses data from Elections Canada instead of the projections from Eric Grenier's three-hundred-eight website.

I was inspired to try making an electoral cartogram by Luke Andrews' square-based electoral cartogram for the 2011 election. When all the votes are counted, each MP from a small urban riding will have the same vote in parliament as an MP from geographically vast ridings, and a cartogram which gives each riding equal area helps present this.

Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
html, body {
overflow: hidden;
height: 100%;
}
html {
-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
body {
font-family: Helvetica, sans-serif;
background-color: white;
margin:0;
padding:0;
}
.tooltip {
opacity: 0.9;
font-size:16px;
width: 355px;
height: 110px;
background-color: white;
position: absolute;
text-align: center;
}
.inner-div {
width: 95%;
height: 90%;
margin: 0 auto;
padding-top: 0.5em;
}
.prediction-table {
margin: 0 auto;
}
.tail {
margin-top: 0px;
margin-left: 47%;
width: 0px;
height: 0px;
border: 10px solid;
border-color: white transparent transparent transparent;
}
.big-row {
font-size: 1em;
font-weight: bold;
}
.small-row {
font-size: 0.75em;
}
.main-prediction {
color: white;
width: 50px;
}
.riding-name {
font-weight: bold;
text-align: center;
height: 2em;
}
.label {
color: black;
text-align: right;
}
.col {
text-align: center;
}
svg {
background: white;
}
.overlay {
position: absolute;
opacity: 0;
fill: none;
pointer-events: all;
z-index: 10;
}
.riding {
stroke: #fff;
stroke-width: .5px;
}
.select-style {
position: absolute;
z-index: 1000;
/*padding: 0;*/
/*margin: 0;*/
border: 1px solid black;
overflow: hidden;
background-color: white;/*#fff;*/
opacity: 0.9;
/*text-align: center;*/
background: white url("angle-down_000000_14.png") no-repeat 98% 50%;
}
.hex-div {
position: absolute;
z-index: 1000;
left: 10px;
top: 10px;
}
.hex-div svg {
background: none;
}
.hex {
/*fill: white;*/
opacity: 0.5;
display: block;
}
.drpdwn1 {
height: 27px;
margin-left: 10px;
font-weight: bold;
font-size: 14px;
}
.drpdwn1 {
width: 240px;
}
.select-style select {
/*text-align: center;*/
/*font-weight: bold;*/
border: none;
box-shadow: none;
background-color: transparent;
background-image: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.select-style select:focus {
outline: none;
}
.footer {
height: 27px;
position: fixed;
width: 300px;
left: 50%;
margin-left: -150px;
bottom: 0px;
background-color: white;
opacity: 0.9;
z-index: 999;
font-size: 14px;
text-align: center;
border: 1px solid;
border-color: black black transparent black;
}
.footer .text {
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
text-align: left;
}
.footer .button {
/*font-weight: bold;*/
text-align: center;
background-color: lightgrey;
border: none;
width: 100%;
height: 27px;
margin-bottom: 10px;
cursor: default;
/*color: white;*/
/*border: 1px solid;*/
/*border-color: transparent transparent black transparent;*/
}
.footer .button div {
padding-top: 6px;
}
.footer i {
padding-left: 5px;
font-size: 14px;
/*font-weight: bold;*/
}
.provincial, .borders {
stroke-width: 4px;
fill: none;
}
.provincial { stroke: black; }
/*.borders { stroke: black; }*/
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/spin.js/2.3.2/spin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"/>
<link rel="stylesheet" type="text/css" href="election_map_hex.css"/>
<title>2015 Canadian Election Map</title>
<meta name="description" content="This interactive map shows the current projections from ThreeHundredEight.com for the 2015 Canadian federal election.">
</head>
<body>
<div id="spin"></div>
</body>
<script>
var opts = {
lines: 13 // The number of lines to draw
, length: 28 // The length of each line
, width: 14 // The line thickness
, radius: 42 // The radius of the inner circle
, scale: 0.5 // Scales overall size of the spinner
, corners: 1 // Corner roundness (0..1)
, color: '#000' // #rgb or #rrggbb or array of colors
, opacity: 0.25 // Opacity of the lines
, rotate: 0 // The rotation offset
, direction: 1 // 1: clockwise, -1: counterclockwise
, speed: 1 // Rounds per second
, trail: 60 // Afterglow percentage
, fps: 20 // Frames per second when using setTimeout() as a fallback for CSS
, zIndex: 2e9 // The z-index (defaults to 2000000000)
, className: 'spinner' // The CSS class to assign to the spinner
, top: '50%' // Top position relative to parent
, left: '50%' // Left position relative to parent
, shadow: false // Whether to render a shadow
, hwaccel: false // Whether to use hardware acceleration
, position: 'absolute' // Element positioning
}
var target = document.getElementById('spin')
var spinner = new Spinner(opts).spin(target);
// var data_path = '../data/'; // dir_election_map/
var data_path = 'dir_election_map/'; // dir_election_map/
var predictions = {};
var parties = ['con', 'lib', 'ndp', 'blc', 'unk', 'grn', 'oth'];
var parties2display = ['con', 'lib', 'ndp', 'blc', 'grn', 'oth'];
/*
var dropdown_opts1 = [{'value': 'none', 'text': 'Current Average Projections'},
{'value': 'con', 'text': 'Conservative High Range'},
{'value': 'lib', 'text': 'Liberal High Range'},
{'value': 'ndp', 'text': 'NDP High Range'},
{'value': 'blc', 'text': 'Bloc Que. High Range'},
{'value': 'grn', 'text': 'Green High Range'},
{'value': 'swing', 'text': 'Projected Close Races'}
];
*/
var dropdown_opts1 = [{'value': 'none', 'text': 'Preliminary Results'}];
var transition_width = 600; // width at which the tooltip stops moving around. in px
var isTouchDevice = 'ontouchstart' in document.documentElement;
// var isTouchDevice = true;
var width = window.innerWidth;
var height = window.innerHeight;
var ack_font_size = (width < 400 ? 11 : 12),
text_w = ack_font_size*29,
footer_expanded_h = 220,
top_button_padding = 5;
if (!inIframe()) {
// only send pageview if not in iframe
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59457353-1', 'auto');
ga('send', 'pageview');
init_acknowledgement();
}
var party_colours = {'ndp': '#F78320', 'con': '#263893', 'lib': '#D71921',
'grn': '#3D9B35', 'blc': '#00A7EC', 'oth': 'grey'};
var init_zoom = 0.16,
max_zoom = 15;
var feature, borders;
var zoom = d3.behavior.zoom()
.scaleExtent([init_zoom, max_zoom])
.on("zoom", zoomed)
.size([width, height]);
var path = d3.geo.path().projection(null);
var tooltip, tooltip_h, row1, row2, row3, data;
var svg2 = d3.select("body").append("svg")
.attr("class", "overlay")
.attr("width", width)
.attr("height", height)
.append("g");
draw_tooltip();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// this is so the pan works even when the mouse isn't over an svg riding element
svg2.append("rect")
.attr("class", "overlay")
.attr("width", width)
.attr("height", height);
var g = svg.append("g");
var g2 = svg2.append("g");
svg.call(zoom)
.call(zoom.event);
svg2.call(zoom)
.call(zoom.event)
.on("mousemove", function() {
var pos = d3.mouse(this);
var tooltip_w = +d3.select(".tooltip").style("width").slice(0, -2); // slice to remove the 'px'
var x = pos[0] - 0.50*tooltip_w,
y = pos[1] - 1.15*tooltip_h;
if(typeof data != 'undefined') {
update_tooltip(x, y, data);
}
});
d3.json(data_path + "ca_refigured_merged2.json", function(error_hex, ca_hex) {
if (error_hex) throw error_hex;
borders = topojson.feature(ca_hex, ca_hex.objects['Canada Elections Map Borders']);
d3.csv(data_path + 'new_dict.csv', function (dict) {
var d2 = {};
for (var i = 0; i < dict.length; i++) {
d2[dict[i].riding_number] = {"FEDNUM": dict[i].FEDNUM,
"riding_utf8": dict[i].riding_utf8};
};
// d3.text('https://raw.githubusercontent.com/smcmurtry/election_map/master/data/current_projections.txt', function(dat) {
d3.text('results_reformatted.txt', function(dat) {
parse_data();
feature_hex = topojson.feature(ca_hex, ca_hex.objects.EncodedRidingMap338);
window.onresize = function(event) {
on_resize();
};
function parse_data() {
var rows = [];
d3.tsv.parseRows(dat, function(pdata) {
var results = pdata.filter(function(x) { return x == ''; });
if (results.length < 2) { rows.push(pdata); }
});
for (var riding = 0; riding < 338; riding++) {
var dataz = {};
var name = rows[riding*3+1][0];
dataz['name'] = name;
dataz['likelyhood'] = rows[riding*3+1][8];
dataz['details'] = {};
dataz['FEDNUM'] = +d2[riding].FEDNUM;
dataz['riding_utf8'] = d2[riding].riding_utf8;
var max = 0;
var leader;
for (var i = 0; i < parties.length; i++) {
dataz['details'][parties[i]] = {};
dataz['details'][parties[i]]['low'] = rows[riding*3][i+1];
dataz['details'][parties[i]]['med'] = rows[riding*3+1][i+1];
dataz['details'][parties[i]]['high'] = rows[riding*3+2][i+1];
if (max < +rows[riding*3+1][i+1]) {
max = +rows[riding*3+1][i+1];
leader = parties[i];
}
};
dataz['leader'] = leader;
predictions[+d2[riding].FEDNUM] = dataz;
}
};
function draw_map(feature, hex) {
g.selectAll('g').remove();
g2.selectAll('g').remove();
g.append("g")
.selectAll("path")
.data(feature.features)
.enter().append("path")
.attr("class", "riding")
.attr("d", path)
colour_ridings();
if (hex) {
g.append("g")
.selectAll("path")
.data(borders.features)
.enter().append("path")
.attr("class", function(d) {
if (d.properties.BorderType == 2)
return "provincial";
else
return "borders";
})
.attr("d", path)
.attr("fill", "none");
}
g2.append("g")
.selectAll("path")
.data(feature.features)
.enter().append("path")
.attr("d", path)
.attr("class", "overlay-riding")
.on("mouseover", function(d) {
if ( typeof d.properties.FEDNUM !== 'undefined') {
tooltip.style("display", "block");
data = predictions[d.properties.FEDNUM];
d3.selectAll(".riding")
.filter(function(d) { return d.properties.FEDNUM == data.FEDNUM; })
.attr("opacity", 0.5)
}})
.on("mouseout", function(d) {
if ( typeof d.properties.FEDNUM !== 'undefined') {
tooltip.style("display", "none");
d3.selectAll(".riding")
.filter(function(d) { return d.properties.FEDNUM == data.FEDNUM; })
.attr("opacity", 1)
}})
initialize_zoom(feature);
};
function init_dropdown() {
var dropdown_w1 = 225;
var drpdwn1 = d3.select("body")
.append("div")
.attr("class", "select-style")
.style("width", dropdown_w1 + 'px')
.style("height", 27 + 'px')
.style("left", ((width-dropdown_w1)/2) + 'px')
.style("top", top_button_padding + 'px');
drpdwn1.append("select")
.attr("class", "drpdwn1")
d3.selectAll(".drpdwn1")
.selectAll("option")
.data(dropdown_opts1)
.enter()
.append("option")
.attr("value", function(d) { return d.value; })
.html(function(d) { return d.text; });
d3.select(".drpdwn1")
.on("change", function() {
colour_ridings();
})
}
function colour_ridings() {
var val = get_selected(".drpdwn1");
if (val == 'none') {
d3.selectAll(".riding")
.attr("fill", function(d) {
var proj_data = predictions[d.properties.FEDNUM];
return party_colours[proj_data['leader']];
});
} else if (val == 'swing') {
d3.selectAll(".riding")
.attr("fill", function(d) {
var proj_data = predictions[d.properties.FEDNUM];
for (var i = parties2display.length - 1; i >= 0; i--) {
if (best_case(parties2display[i], proj_data) != proj_data['leader']) {
return '#252525';
}
};
return '#d9d9d9';
});
} else {
d3.selectAll(".riding")
.attr("fill", function(d) {
var proj_data = predictions[d.properties.FEDNUM];
var leader = best_case(val, proj_data);
return party_colours[leader];
});
}
}
spinner.stop();
init_dropdown();
draw_map(feature_hex, true);
});
});
});
function zoomed() {
g.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
g2.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
}
function initialize_zoom(feature) {
var init_height = (width<=transition_width || isTouchDevice) ? height-tooltip_h : height;
var blocked_top = 37;
var blocked_bottom = 29;
var unblocked_height = init_height - blocked_top - blocked_bottom; //
var b = path.bounds(feature),
s = .95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / unblocked_height),
t = [(width - s * (b[1][0] + b[0][0])) / 2, (unblocked_height - s * (b[1][1] + b[0][1]))/2 + blocked_top ];
zoom.scaleExtent([s, max_zoom]);
zoom.scale(s).translate(t);
g.call(zoom.event);
g2.call(zoom.event);
}
function update_tooltip(x, y, data) {
tooltip.select(".riding-name").text(data['riding_utf8']); //['ENNAME']);
for (var i = 0; i < parties2display.length; i++) {
var p = parties2display[i];
/* row1.select("." + p)
.text(data.details[p].high);*/
row2.select("." + p)
.text(data.details[p].med);
/* row3.select("." + p)
.text(data.details[p].low);*/
}
row2.select(".main-prediction")
.style("background-color", party_colours[data.leader])
.text(data.likelyhood);
if (width > transition_width && !isTouchDevice) {
tooltip.style("transform", "translate("+ x + "px," + y + "px)");
tooltip.style("-ms-transform", "translate("+ x + "px," + y + "px)"); // IE 9
tooltip.style("-webkit-transform", "translate("+ x + "px," + y + "px)"); // Safari
}
}
function draw_tooltip() {
tooltip = d3.select("body")
.append("div")
.attr('class', 'tooltip')
.style("display", "none");
var inner_div = tooltip.append("div").attr("class", 'inner-div');
var tail = tooltip.append("div").attr("class", "tail");
inner_div.append("div").attr("class", "riding-name");
var prediction_table = inner_div.append("table").attr("class", "prediction-table");
// row1 = prediction_table.append("tr").attr("class", "small-row");
row2 = prediction_table.append("tr").attr("class", "big-row");
// row3 = prediction_table.append("tr").attr("class", "small-row");
// row1.append("td").attr("class", "label").text("High/Haut");
row2.append("td").attr("class", "label").text("");
// row3.append("td").attr("class", "label").text("Low/Bas");
for (var i = 0; i < parties2display.length; i++) {
var p = parties2display[i];
/* row1.append("td")
.attr("class", "col " + p)
.style("color", party_colours[p]);
*/
row2.append("td")
.attr("class", "col " + p)
.style("color", party_colours[p]);
/*
row3.append("td")
.attr("class", "col " + p)
.style("color", party_colours[p]);
*/
};
row2.append("td")
.attr("class", "col main-prediction");
tooltip_h = +d3.select(".tooltip").style("height").slice(0, -2);
transition_tooltip();
}
function transition_tooltip() {
if (width <= transition_width || isTouchDevice) {
tooltip.style("width", "100%");
var translate_y = height-tooltip_h;
if(!inIframe()) {
bottom_margin = 20; // 14
tooltip.style("height", (110+bottom_margin) + 'px');
translate_y = height-tooltip_h-bottom_margin;
}
tooltip.style("transform", "translate("+ 0 + "px," + translate_y + "px)");
tooltip.style("-ms-transform", "translate("+ 0 + "px," + translate_y + "px)"); // IE 9
tooltip.style("-webkit-transform", "translate("+ 0 + "px," + translate_y + "px)"); // Safari
} else {
tooltip.style("width", '355px');
tooltip.style("height", (110) + 'px')
}
}
function inIframe () {
try { return window.self !== window.top; }
catch (e) { return true; }
}
function init_acknowledgement() {
d3.select("body")
.append("div")
.attr("class", "footer")
var details_button = d3.select('.footer')
.append('div')
.attr('class', 'button')
details_button.append('div')
.html("Details")
.append('i')
.attr('class', 'fa fa-angle-up')
d3.select('.footer')
.append('div')
.attr('class', 'text')
.html("This map uses data from <a href='http://enr.elections.ca/National.aspx?lang=e'>Elections Canada</a>, downloaded on 20 October 2015.")
d3.select('.footer')
.append('div')
.attr('class', 'text')
.html("This is not an Elections Canada site. The code was created by <a href='http://stephenmcmurtry.org/'>Stephen McMurtry</a>, modified by Richard Martin-Nielsen.")
d3.select('.footer')
.append('div')
.attr('class', 'text')
.html("Hexagon cartogram design by Richard Martin-Nielsen.")
d3.select('.footer')
.append('div')
.attr('class', 'text')
.html("Interactive map &copy; <a href='http://stephenmcmurtry.org/'>Stephen McMurtry</a>");
d3.select('.footer .button')
.on('click', function() {
if (+d3.select('.footer').style('height').slice(0, -2) > 30) {
d3.select('.footer')
.transition()
.duration(600)
.style('height', 27 + 'px');
d3.select('.fa').attr('class', 'fa fa-angle-up');
} else {
d3.select('.footer')
.transition()
.duration(600)
.style('height', footer_expanded_h + 'px');
d3.select('.fa').attr('class', 'fa fa-angle-down');
d3.select('.overlay')
.on('mouseover', function() {
d3.select('.footer')
.transition()
.duration(600)
.style('height', 27 + 'px');
d3.select('.fa').attr('class', 'fa fa-angle-up');
});
}
});
}
function on_resize() {
width = window.innerWidth;
height = window.innerHeight;
transition_tooltip();
svg.attr("width", width)
.attr("height", height);
svg2.attr("width", width)
.attr("height", height);
d3.select('.overlay').attr("width", width)
.attr("height", height);
// initialize_zoom();
d3.select('.select-style').style("left", ((width-230)/2) + 'px');
if(!inIframe()) {
ack_font_size = (width < 400 ? 11 : 12);
text_w = ack_font_size*29;
}
}
// following functions are all for the dropdown menu
function best_case(party, proj_data) {
if (party == 'none') {
return proj_data['leader'];
} else {
var high = +proj_data['details'][party]['high'];
var lows = [];
for (var i = 0; i < parties2display.length; i++) {
if (parties2display[i] != party) {
lows.push(+proj_data['details'][parties2display[i]]['low']);
}
};
return high > Math.max.apply(null, lows) ? party : proj_data['leader'];
}
}
function get_selected(id) {
var options = d3.select(id).selectAll('option');
var index = d3.select(id).property('selectedIndex');
return options[0][index].value;
}
d3.select(self.frameElement).style("height", height + "px");
on_resize();
</script>
riding_number FEDNUM riding_utf8
0 59001 Abbotsford
1 59002 Burnaby North – Seymour
2 59003 Burnaby South
3 59004 Cariboo – Prince George
4 59005 Central Okanagan – Similkameen – Nicola
5 59006 Chilliwack – Hope
6 59007 Cloverdale – Langley City
7 59008 Coquitlam – Port Coquitlam
8 59009 Courtenay – Alberni
9 59010 Cowichan – Malahat – Langford
10 59011 Delta
11 59026 Esquimalt – Saanich – Sooke
12 59012 Fleetwood – Port Kells
13 59013 Kamloops – Thompson – Cariboo
14 59014 Kelowna – Lake Country
15 59015 Kootenay – Columbia
16 59016 Langley – Aldergrove
17 59017 Mission – Matsqui – Fraser Canyon
18 59018 Nanaimo – Ladysmith
19 59019 New Westminster – Burnaby
20 59037 North Island – Powell River
21 59020 North Okanagan – Shuswap
22 59021 North Vancouver
23 59022 Pitt Meadows – Maple Ridge
24 59023 Port Moody – Coquitlam
25 59024 Prince George – Peace River – Northern Rockies
26 59025 Richmond Centre
27 59027 Saanich – Gulf Islands
28 59028 Skeena – Bulkley Valley
29 59029 South Okanagan – West Kootenay
30 59030 South Surrey – White Rock
31 59031 Steveston – Richmond East
32 59032 Surrey Centre
33 59033 Surrey – Newton
34 59034 Vancouver Centre
35 59035 Vancouver East
36 59036 Vancouver Granville
37 59038 Vancouver Kingsway
38 59039 Vancouver Quadra
39 59040 Vancouver South
40 59041 Victoria
41 59042 West Vancouver – Sunshine Coast – Sea to Sky Country
42 48001 Banff – Airdrie
43 48002 Battle River – Crowfoot
44 48003 Bow River
45 48004 Calgary Centre
46 48005 Calgary Confederation
47 48006 Calgary Forest Lawn
48 48007 Calgary Heritage
49 48008 Calgary Midnapore
50 48009 Calgary Nose Hill
51 48010 Calgary Rocky Ridge
52 48011 Calgary Shepard
53 48012 Calgary Signal Hill
54 48013 Calgary Skyview
55 48014 Edmonton Centre
56 48015 Edmonton Griesbach
57 48016 Edmonton Manning
58 48017 Edmonton Mill Woods
59 48018 Edmonton Riverbend
60 48019 Edmonton Strathcona
61 48020 Edmonton West
62 48021 Edmonton – Wetaskiwin
63 48022 Foothills
64 48023 Fort McMurray – Cold Lake
65 48024 Grande Prairie – Mackenzie
66 48025 Lakeland
67 48026 Lethbridge
68 48027 Medicine Hat – Cardston – Warner
69 48028 Peace River – Westlock
70 48030 Red Deer – Lacombe
71 48029 Red Deer – Mountain View
74 48033 Sturgeon River
75 48034 Yellowhead
76 47001 Battlefords – Lloydminster
77 47004 Carlton Trail – Eagle Creek
78 47002 Cypress Hills – Grasslands
79 47003 Desnethé – Missinippi – Churchill River
80 47005 Moose Jaw – Lake Centre – Lanigan
81 47006 Prince Albert
82 47007 Regina – Lewvan
83 47008 Regina – Qu'Appelle
84 47009 Regina – Wascana
85 47010 Saskatoon – Grasswood
86 47011 Saskatoon – University
87 47012 Saskatoon West
88 47013 Souris – Moose Mountain
89 47014 Yorkton – Melville
90 46001 Brandon – Souris
91 46002 Charleswood – St. James – Assiniboia – Headingley
92 46003 Churchill – Keewatinook Aski
94 46005 Elmwood – Transcona
95 46006 Kildonan – St. Paul
96 46007 Portage – Lisgar
97 46008 Provencher
98 46009 Saint Boniface – Saint Vital
99 46010 Selkirk – Interlake – Eastman
100 46011 Winnipeg Centre
101 46012 Winnipeg North
102 46013 Winnipeg South
103 46014 Winnipeg South Centre
104 35001 Ajax
105 35002 Algoma – Manitoulin – Kapuskasing
106 35003 Aurora – Oak Ridges – Richmond Hill
107 35004 Barrie – Innisfil
108 35005 Barrie – Springwater – Oro-Medonte
109 35006 Bay of Quinte
110 35007 Beaches – East York
111 35008 Brampton Centre
112 35009 Brampton East
113 35010 Brampton North
114 35011 Brampton South
115 35012 Brampton West
116 35013 Brantford – Brant
117 35014 Bruce – Grey – Owen Sound
118 35015 Burlington
119 35016 Cambridge
120 35088 Carleton
121 35017 Chatham-Kent – Leamington
122 35018 Davenport
123 35019 Don Valley East
124 35020 Don Valley North
125 35021 Don Valley West
126 35022 Dufferin – Caledon
127 35023 Durham
128 35024 Eglinton – Lawrence
129 35025 Elgin – Middlesex – London
130 35026 Essex
131 35027 Etobicoke Centre
132 35028 Etobicoke – Lakeshore
133 35029 Etobicoke North
134 35030 Flamborough – Glanbrook
135 35031 Glengarry – Prescott – Russell
136 35032 Guelph
137 35033 Haldimand – Norfolk
138 35034 Haliburton – Kawaratha Lakes – Brock
139 35035 Hamilton Centre
140 35036 Hamilton East – Stoney Creek
141 35037 Hamilton Mountain
142 35038 Hamilton West – Ancaster – Dundas
143 35039 Hastings – Lennox and Addington
144 35121 Humber River – Black Creek
145 35040 Huron – Bruce
146 35041 Kanata – Carleton
147 35042 Kenora
148 35044 Kingston and the Islands
149 35043 King – Vaughan
150 35045 Kitchener Centre
151 35046 Kitchener – Conestoga
152 35047 Kitchener South – Hespeler
153 35048 Lambton – Kent – Middlesex
154 35049 Lanark – Frontenac – Kingston
155 35050 Leeds – Grenville – Thousand Islands and Rideau Lakes
156 35051 London – Fanshawe
157 35052 London North Centre
158 35053 London West
159 35054 Markham – Stouffville
160 35055 Markham – Thornhill
161 35056 Markham – Unionville
162 35057 Milton
163 35058 Mississauga Centre
164 35059 Mississauga East – Cooksville
165 35060 Mississauga – Erin Mills
166 35061 Mississauga – Lakeshore
167 35062 Mississauga – Malton
168 35063 Mississauga – Streetsville
169 35064 Nepean
170 35065 Newmarket – Aurora
171 35066 Niagara Centre
172 35067 Niagara Falls
173 35068 Niagara West
174 35069 Nickel Belt
175 35070 Nipissing – Timiskaming
176 35071 Northumberland – Peterborough South
177 35072 Oakville
178 35073 Oakville North – Burlington
179 35076 Orléans
180 35074 Oshawa
181 35075 Ottawa Centre
182 35077 Ottawa South
183 35078 Ottawa – Vanier
184 35079 Ottawa West – Nepean
185 35080 Oxford
186 35081 Parkdale – High Park
187 35082 Parry Sound – Muskoka
188 35083 Perth – Wellington
189 35084 Peterborough – Kawartha
190 35085 Pickering – Uxbridge
191 35086 Renfrew – Nipissing – Pembroke
192 35087 Richmond Hill
193 35089 St. Catharines
194 35091 Sarnia – Lambton
195 35092 Sault Ste. Marie
196 35093 Scarborough – Agincourt
197 35094 Scarborough Centre
198 35095 Scarborough – Guildwood
199 35096 Scarborough North
200 35097 Scarborough – Rouge Park
201 35098 Scarborough Southwest
202 35099 Simcoe – Grey
203 35100 Simcoe North
204 35101 Spadina – Fort York
205 35102 Stormont – Dundas – South Glengarry
206 35103 Sudbury
207 35104 Thornhill
208 35105 Thunder Bay – Rainy River
209 35106 Thunder Bay – Superior North
210 35107 Timmins – James Bay
211 35108 Toronto Centre
212 35109 Toronto – Danforth
213 35090 Toronto – St. Paul's
214 35110 University – Rosedale
215 35111 Vaughan – Woodbridge
216 35112 Waterloo
217 35113 Wellington – Halton Hills
218 35114 Whitby
219 35115 Willowdale
220 35116 Windsor – Tecumseh
221 35117 Windsor West
222 35118 York Centre
223 35119 York – Simcoe
224 35120 York South – Weston
225 24001 Abitibi – Baie-James – Nunavik – Eeyou
226 24002 Abitibi – Témiscamingue
227 24003 Ahuntsic – Cartierville
228 24004 Alfred-Pellan
229 24005 Argenteuil – La Petite-Nation
230 24006 Avignon – La Mitis – Matane – Matapédia*
231 24007 Beauce
232 24020 Beauport – Côte-de-Beaupré – Île d'Orléans – Charlevoix
233 24008 Beauport – Limoilou
234 24009 Bécancour – Nicolet – Saurel
235 24010 Bellechasse – Les Etchemins – Lévis
236 24011 Beloeil – Chambly
237 24012 Berthier – Maskinongé
238 24015 Bourassa
239 24016 Brome – Missisquoi
240 24017 Brossard – Saint-Lambert
241 24019 Charlesbourg – Haute-Saint-Charles
242 24021 Châteauguay – Lacolle
243 24022 Chicoutimi – Le Fjord
244 24023 Compton – Stanstead
245 24024 Dorval – Lachine – LaSalle
246 24025 Drummond
247 24026 Gaspésie – Les Îles-de-la-Madeleine
248 24027 Gatineau
249 24028 Hochelaga
250 24029 Honoré-Mercier
251 24030 Hull – Aylmer
252 24031 Joliette
253 24032 Jonquière
254 24033 La Pointe-de-l'Île
255 24034 La Prairie
256 24035 Lac-Saint-Jean
257 24036 Lac-Saint-Louis
258 24037 LaSalle – Émard – Verdun
259 24038 Laurentides – Labelle
260 24039 Laurier – Sainte-Marie
261 24040 Laval-Les Îles
262 24042 Lévis – Lotbinière
263 24041 Longueuil – Charles-LeMoyne
264 24043 Longueuil – Saint-Hubert
265 24044 Louis-Hébert
266 24045 Louis-Saint-Laurent
267 24046 Manicouagan
268 24065 Marc-Aurèle-Fortin
269 24047 Mégantic – L'Érable
270 24048 Mirabel
271 24049 Montarville
272 24050 Montcalm
273 24051 Montmagny – L'Islet – Kamouraska – Rivière-du-Loup
274 24052 Mont-Royal
275 24053 Notre-Dame-de-Grâce – Westmount
276 24054 Outremont
277 24055 Papineau
278 24014 Pierre-Boucher – Les Patriotes – Verchères
279 24056 Pierrefonds – Dollard
280 24057 Pontiac
281 24058 Portneuf – Jacques Cartier
282 24059 Québec
283 24060 Repentigny
284 24061 Richmond – Arthabaska
285 24018 Rimouski-Neigette – Témiscouata – Les Basques
286 24062 Rivière-des-Mille-Îles
287 24063 Rivière-du-Nord
288 24064 Rosemont – La Petite-Patrie
289 24066 Saint-Hyacinthe – Bagot
290 24067 Saint-Jean
291 24068 Saint-Laurent
292 24069 Saint-Léonard – Saint-Michel
293 24070 Saint-Maurice – Champlain
294 24071 Salaberry – Suroît
295 24072 Shefford
296 24073 Sherbrooke
297 24075 Terrebonne
298 24013 Thérèse-De Blainville
299 24076 Trois-Rivières
300 24074 Vaudreuil – Soulanges
301 24077 Ville-Marie – Le Sud-Ouest – L'Île-des-Soeurs
302 24078 Vimy
303 13001 Acadie – Bathurst
304 13002 Beauséjour
305 13003 Fredericton
306 13004 Fundy Royal
307 13005 Madawaska – Restigouche
308 13006 Miramichi – Grand Lake
309 13007 Moncton – Riverview – Dieppe
310 13008 New Brunswick Southwest
311 13009 Saint John – Rothesay
312 13010 Tobique – Mactaquac
313 12001 Cape Breton – Canso
314 12002 Central Nova
315 12003 Cumberland – Colchester
316 12004 Dartmouth – Cole Harbour
317 12005 Halifax
318 12006 Halifax West
319 12007 Kings – Hants
320 12008 Sackville – Preston – Chezzetcook
321 12009 South Shore – St. Margaret's
322 12010 Sydney – Victoria
323 12011 West Nova
324 11001 Cardigan
325 11002 Charlottetown
326 11003 Egmont
327 11004 Malpeque
329 10002 Bonavista – Burin – Trinity
330 10003 Coast of Bays – Central – Notre Dame
331 10004 Labrador
332 10005 Long Range Mountains
333 10006 St. John's East
334 10007 St. John's South – Mount Pearl
335 61001 Northwest Territories
336 62001 Nunavut
337 60001 Yukon
72 48031 St. Albert – Edmonton
73 48032 Sherwood Park – Fort Saskatchewan
93 46004 Dauphin – Swan River – Neepawa
328 10001 Avalon
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Abbotsford 48.2 32.9 13.7 0.0 0.2 5.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Burnaby North – Seymour 28.1 36.2 29.4 0.0 1.2 5.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Burnaby South 27.1 33.9 35.1 0.0 1.1 2.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cariboo – Prince George 36.5 31.6 25.9 0.0 2.5 3.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Central Okanagan – Similkameen – Nicola 39.5 37.3 19.3 0.0 0.0 3.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Chilliwack – Hope 42.4 33.7 18.2 0.0 1.0 4.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cloverdale – Langley City 34.8 45.5 15.6 0.0 0.0 4.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Coquitlam – Port Coquitlam 31.9 35.1 27.3 0.0 1.8 3.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Courtenay – Alberni 28.2 21.8 38.1 0.0 0.2 11.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cowichan – Malahat – Langford 23.1 23.8 35.6 0.0 0.4 17.0 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Delta 32.7 49.3 14.9 0.0 0.0 3.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Esquimalt – Saanich – Sooke 17.5 27.3 35.0 0.0 0.2 20.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Fleetwood – Port Kells 29.3 46.9 21.5 0.0 0.0 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kamloops – Thompson – Cariboo 35.2 30.5 30.8 0.0 0.0 3.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kelowna – Lake Country 39.8 46.1 14.1 0.0 0.0 0.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kootenay – Columbia 36.8 19.5 37.2 0.0 0.0 6.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Langley – Aldergrove 45.5 36.5 12.8 0.0 0.9 4.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mission – Matsqui – Fraser Canyon 34.9 37.3 20.6 0.0 2.1 5.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Nanaimo – Ladysmith 23.3 23.7 33.1 0.0 0.2 19.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
New Westminster – Burnaby 19.8 28.8 43.5 0.0 3.0 4.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
North Island – Powell River 26.2 25.5 40.0 0.0 0.0 8.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
North Okanagan – Shuswap 39.3 30.0 25.6 0.0 0.0 5.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
North Vancouver 26.9 56.6 7.8 0.0 0.3 8.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Pitt Meadows – Maple Ridge 31.4 33.8 29.6 0.0 1.0 4.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Port Moody – Coquitlam 29.9 30.7 35.8 0.0 0.2 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Prince George – Peace River – Northern Rockies 52.6 24.8 15.5 0.0 2.0 5.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Richmond Centre 43.5 42.3 11.3 0.0 0.0 2.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saanich – Gulf Islands 19.4 16.8 9.1 0.0 0.4 54.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Skeena – Bulkley Valley 24.7 18.7 51.2 0.0 1.8 3.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
South Okanagan – West Kootenay 29.8 28.1 37.2 0.0 0.6 4.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
South Surrey – White Rock 44.0 41.5 10.4 0.0 0.7 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Steveston – Richmond East 38.5 45.1 12.1 0.0 0.6 3.7 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Surrey Centre 19.8 45.1 30.1 0.0 1.6 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Surrey – Newton 15.7 56.0 26.1 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vancouver Centre 16.7 56.5 20.0 0.0 1.1 5.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vancouver East 10.8 28.1 50.0 0.0 2.0 9.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vancouver Granville 26.1 43.9 26.9 0.0 0.0 3.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vancouver Kingsway 21.1 27.9 45.6 0.0 2.2 3.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vancouver Quadra 25.9 58.7 10.7 0.0 0.6 4.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vancouver South 33.9 48.8 14.0 0.0 0.8 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Victoria 11.8 11.9 42.2 0.0 1.2 33.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
West Vancouver – Sunshine Coast – Sea to Sky Country 26.3 54.7 9.7 0.0 0.5 8.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Banff – Airdrie 63.4 26.1 6.8 0.0 0.0 3.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Battle River – Crowfoot 81.0 9.3 6.5 0.0 0.0 3.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bow River 77.4 13.7 5.2 0.0 1.9 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Centre 45.2 46.7 5.6 0.0 0.4 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Confederation 45.5 43.6 7.2 0.0 0.3 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Forest Lawn 48.0 36.0 9.8 0.0 3.3 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Heritage 63.8 25.9 7.3 0.0 0.8 2.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Midnapore 66.5 22.6 8.0 0.0 0.2 2.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Nose Hill 60.0 26.9 8.9 0.0 1.6 2.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Rocky Ridge 60.4 31.7 5.8 0.0 0.0 2.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Shepard 65.9 24.7 6.8 0.0 0.0 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Signal Hill 60.6 30.6 5.0 0.0 1.4 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Calgary Skyview 39.7 45.9 8.0 0.0 4.4 1.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton Centre 34.9 37.2 24.5 0.0 0.8 2.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton Griesbach 39.9 21.7 34.0 0.0 2.0 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton Manning 45.4 27.6 23.4 0.0 1.4 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton Mill Woods 41.1 41.2 12.8 0.0 2.7 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton Riverbend 49.9 30.2 17.0 0.0 0.7 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton Strathcona 31.3 20.7 44.0 0.0 1.8 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton West 49.3 34.9 13.0 0.0 0.8 1.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Edmonton – Wetaskiwin 65.7 21.4 9.7 0.0 0.8 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Foothills 75.7 13.4 6.4 0.0 1.3 3.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Fort McMurray – Cold Lake 60.6 28.4 7.7 0.0 1.8 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Grande Prairie – Mackenzie 73.0 14.6 8.1 0.0 1.2 3.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lakeland 73.6 13.7 9.2 0.0 1.1 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lethbridge 56.8 18.5 20.5 0.0 1.7 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Medicine Hat – Cardston – Warner 68.7 18.0 9.6 0.0 1.0 2.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Peace River – Westlock 69.2 13.0 14.4 0.0 0.9 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Red Deer – Lacombe 70.4 15.4 11.4 0.0 0.0 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Red Deer – Mountain View 74.3 13.4 8.4 0.0 1.2 2.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
St. Albert – Edmonton 45.2 22.6 11.2 0.0 19.7 1.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sherwood Park – Fort Saskatchewan 63.9 20.4 9.8 0.0 3.3 2.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sturgeon River 70.2 15.6 10.0 0.0 1.2 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Yellowhead 72.2 14.2 9.1 0.0 1.6 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Battlefords – Lloydminster 61.0 16.5 17.6 0.0 3.2 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Carlton Trail – Eagle Creek 64.7 14.4 18.7 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cypress Hills – Grasslands 69.2 14.9 13.2 0.0 0.0 2.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Desnethé – Missinippi – Churchill River 30.2 33.9 34.1 0.0 0.0 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Moose Jaw – Lake Centre – Lanigan 55.5 18.0 23.8 0.0 0.5 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Prince Albert 49.8 19.8 28.5 0.0 0.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Regina – Lewvan 34.9 27.5 35.2 0.0 0.6 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Regina – Qu'Appelle 44.8 23.0 29.9 0.0 0.0 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Regina – Wascana 30.2 55.2 12.5 0.0 0.0 2.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saskatoon – Grasswood 41.6 26.4 30.2 0.0 0.0 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saskatoon – University 41.5 25.2 31.5 0.0 0.2 1.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saskatoon West 32.8 24.6 39.5 0.0 1.3 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Souris – Moose Mountain 70.1 13.5 13.7 0.0 0.0 2.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Yorkton – Melville 59.2 17.8 20.2 0.0 0.0 2.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brandon – Souris 50.2 37.3 6.4 0.0 0.0 6.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Charleswood – St. James – Assiniboia – Headingley 39.2 51.9 6.0 0.0 0.0 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Churchill – Keewatinook Aski 9.8 41.3 46.3 0.0 0.8 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Dauphin – Swan River – Neepawa 46.4 29.4 12.3 0.0 8.1 3.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Elmwood – Transcona 34.1 29.2 34.3 0.0 0.0 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kildonan – St. Paul 39.9 42.6 14.3 0.0 1.4 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Portage – Lisgar 60.8 25.8 6.2 0.0 3.2 4.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Provencher 55.8 34.4 5.9 0.0 0.0 3.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint Boniface – Saint Vital 28.7 58.4 10.6 0.0 0.0 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Selkirk – Interlake – Eastman 51.9 31.4 11.4 0.0 1.8 3.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Winnipeg Centre 12.4 54.5 28.0 0.0 1.1 4.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Winnipeg North 15.3 68.9 13.4 0.0 0.0 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Winnipeg South 34.8 58.3 4.9 0.0 0.0 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Winnipeg South Centre 27.9 59.7 8.8 0.0 0.0 3.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ajax 34.5 55.7 8.2 0.0 0.1 1.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Algoma – Manitoulin – Kapuskasing 23.7 34.1 40.0 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Aurora – Oak Ridges – Richmond Hill 45.2 47.3 5.7 0.0 0.5 1.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Barrie – Innisfil 46.4 37.1 11.8 0.0 0.7 4.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Barrie – Springwater – Oro-Medonte 41.7 41.5 10.3 0.0 1.2 5.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bay of Quinte 34.3 50.6 12.2 0.0 0.6 2.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Beaches – East York 16.5 49.4 30.8 0.0 0.8 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brampton Centre 33.8 48.8 14.9 0.0 0.4 2.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brampton East 23.5 52.3 23.0 0.0 0.0 1.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brampton North 33.0 48.4 16.5 0.0 0.3 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brampton South 35.0 52.1 10.6 0.0 0.0 2.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brampton West 30.1 55.9 12.4 0.0 0.0 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brantford – Brant 40.8 30.7 24.9 0.0 1.1 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bruce – Grey – Owen Sound 46.8 38.7 11.2 0.0 0.0 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Burlington 42.5 46.0 9.0 0.0 0.0 2.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cambridge 38.7 43.2 13.8 0.0 1.1 3.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Carleton 46.9 43.6 6.1 0.0 0.0 3.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Chatham-Kent – Leamington 41.7 37.3 18.4 0.0 0.0 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Davenport 10.6 44.3 41.4 0.0 0.7 3.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Don Valley East 29.1 57.7 10.6 0.0 0.0 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Don Valley North 37.8 51.4 8.5 0.0 0.0 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Don Valley West 37.6 53.6 6.0 0.0 1.2 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Dufferin – Caledon 46.1 39.0 7.4 0.0 0.0 7.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Durham 45.2 35.7 16.0 0.0 0.6 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Eglinton – Lawrence 39.0 49.6 5.6 0.0 0.8 5.0 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Elgin – Middlesex – London 49.2 31.0 15.4 0.0 1.2 3.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Essex 35.7 20.9 41.4 0.0 0.1 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Etobicoke Centre 37.2 52.8 7.9 0.0 0.6 1.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Etobicoke – Lakeshore 32.3 53.7 10.9 0.0 0.8 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Etobicoke North 23.7 61.8 12.3 0.0 0.9 1.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Flamborough – Glanbrook 43.5 39.1 14.0 0.0 0.0 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Glengarry – Prescott – Russell 36.3 53.4 7.9 0.0 0.6 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Guelph 26.4 49.1 12.0 0.0 1.2 11.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Haldimand – Norfolk 44.1 36.6 13.6 0.0 4.8 3.3 0.0 102%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Haliburton – Kawaratha Lakes – Brock 44.9 31.7 19.5 0.0 0.0 4.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hamilton Centre 14.4 33.4 45.6 0.0 2.1 4.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hamilton East – Stoney Creek 25.4 38.8 32.7 0.0 0.5 2.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hamilton Mountain 25.7 33.6 35.8 0.0 2.4 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hamilton West – Ancaster – Dundas 31.7 47.5 16.2 0.0 0.0 4.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hastings – Lennox and Addington 41.8 42.5 12.7 0.0 0.0 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Humber River – Black Creek 20.2 67.0 10.6 0.0 0.6 1.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Huron – Bruce 44.6 39.9 13.1 0.0 0.0 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kanata – Carleton 39.2 51.3 6.8 0.0 0.0 2.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kenora 28.5 35.5 33.8 0.0 0.5 1.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kingston and the Islands 22.7 55.4 17.0 0.0 0.5 4.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
King – Vaughan 44.2 47.4 6.5 0.0 0.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kitchener Centre 30.0 48.5 16.7 0.0 1.2 3.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kitchener – Conestoga 43.4 42.6 9.8 0.0 1.4 2.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kitchener South – Hespeler 36.4 41.9 15.7 0.0 2.4 3.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lambton – Kent – Middlesex 50.2 29.5 17.0 0.0 0.0 3.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lanark – Frontenac – Kingston 47.9 33.8 14.1 0.0 0.7 3.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Leeds – Grenville – Thousand Islands and Rideau Lakes 47.4 40.6 8.4 0.0 0.0 3.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
London – Fanshawe 27.2 31.3 37.9 0.0 0.6 2.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
London North Centre 31.1 50.5 14.7 0.0 0.4 3.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
London West 35.3 45.8 14.8 0.0 2.4 2.8 0.0 101%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Markham – Stouffville 42.7 49.2 6.2 0.0 0.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Markham – Thornhill 32.3 55.7 10.7 0.0 0.0 1.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Markham – Unionville 49.4 43.3 5.1 0.0 0.0 2.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Milton 45.3 40.5 10.9 0.0 1.0 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mississauga Centre 33.2 55.1 9.5 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mississauga East – Cooksville 35.4 54.2 8.6 0.0 0.3 1.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mississauga – Erin Mills 39.1 49.7 9.4 0.0 0.0 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mississauga – Lakeshore 41.3 47.5 8.2 0.0 0.7 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mississauga – Malton 26.4 59.1 12.3 0.0 0.5 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mississauga – Streetsville 40.4 47.7 9.0 0.0 0.5 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Nepean 36.2 52.4 8.2 0.0 0.9 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Newmarket – Aurora 42.6 45.2 8.5 0.0 1.3 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Niagara Centre 29.7 35.7 31.4 0.0 0.7 2.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Niagara Falls 42.1 34.5 20.9 0.0 0.0 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Niagara West 48.7 32.9 11.4 0.0 4.0 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Nickel Belt 16.8 43.0 37.6 0.0 0.2 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Nipissing – Timiskaming 29.3 51.7 16.4 0.0 0.0 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Northumberland – Peterborough South 39.6 42.5 14.8 0.0 0.0 3.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Oakville 42.5 49.4 5.9 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Oakville North – Burlington 43.0 46.9 7.4 0.0 1.1 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Orléans 30.4 59.8 8.0 0.0 0.0 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Oshawa 38.2 27.3 31.9 0.0 0.1 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ottawa Centre 14.5 42.6 38.5 0.0 1.4 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ottawa South 24.2 60.1 11.6 0.0 1.2 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ottawa – Vanier 19.1 57.6 19.2 0.0 2.1 3.1 0.0 101%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ottawa West – Nepean 30.0 56.0 9.8 0.0 1.4 2.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Oxford 45.6 32.2 16.5 0.0 2.1 3.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Parkdale – High Park 13.1 42.1 40.2 0.0 1.8 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Parry Sound – Muskoka 43.3 38.9 10.1 0.0 0.5 7.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Perth – Wellington 43.0 37.5 15.0 0.0 1.9 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Peterborough – Kawartha 35.2 43.1 18.8 0.0 0.2 2.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Pickering – Uxbridge 38.2 50.3 9.2 0.0 0.0 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Renfrew – Nipissing – Pembroke 45.8 32.7 8.6 0.0 11.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Richmond Hill 43.3 46.9 8.0 0.0 0.0 1.7 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
St. Catharines 37.6 43.2 16.5 0.0 0.1 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sarnia – Lambton 38.8 27.3 31.1 0.0 0.0 2.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sault Ste. Marie 31.1 44.8 21.8 0.0 0.2 2.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Scarborough – Agincourt 38.0 51.9 7.8 0.0 0.8 1.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Scarborough Centre 32.3 50.5 11.6 0.0 3.3 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Scarborough – Guildwood 26.5 60.0 11.3 0.0 0.7 1.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Scarborough North 27.4 48.2 22.1 0.0 0.8 1.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Scarborough – Rouge Park 27.3 60.1 10.4 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Scarborough Southwest 21.3 52.5 23.7 0.0 0.0 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Simcoe – Grey 46.6 38.5 9.6 0.0 0.8 4.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Simcoe North 43.5 39.8 10.6 0.0 1.7 4.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Spadina – Fort York 15.7 54.5 27.4 0.0 0.3 2.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Stormont – Dundas – South Glengarry 51.0 38.6 8.2 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sudbury 21.1 47.4 27.8 0.0 1.4 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Thornhill 58.6 33.7 5.2 0.0 1.4 1.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Thunder Bay – Rainy River 21.1 44.1 29.6 0.0 0.0 5.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Thunder Bay – Superior North 17.5 44.9 23.2 0.0 0.6 13.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Timmins – James Bay 21.0 34.1 42.7 0.0 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Toronto Centre 12.2 57.9 26.6 0.0 0.8 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Toronto – Danforth 9.9 42.3 40.0 0.0 2.9 4.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Toronto – St. Paul's 27.0 55.3 14.7 0.0 0.0 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
University – Rosedale 17.5 49.8 28.6 0.0 1.1 2.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vaughan – Woodbridge 43.6 48.9 4.6 0.0 1.5 1.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Waterloo 32.4 49.6 14.9 0.0 0.2 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Wellington – Halton Hills 50.8 36.5 8.4 0.0 0.3 4.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Whitby 42.1 44.9 10.4 0.0 0.5 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Willowdale 37.1 53.2 7.0 0.0 0.5 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Windsor – Tecumseh 27.5 26.6 43.5 0.0 0.5 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Windsor West 20.8 25.5 51.1 0.0 0.3 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
York Centre 44.0 46.8 7.3 0.0 0.0 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
York – Simcoe 50.2 37.8 8.9 0.0 0.0 3.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
York South – Weston 19.2 46.1 30.3 0.0 2.4 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Abitibi – Baie-James – Nunavik – Eeyou 9.3 32.1 37.0 18.5 0.8 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Abitibi – Témiscamingue 6.8 29.4 41.5 19.6 0.9 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ahuntsic – Cartierville 7.4 46.6 30.0 13.4 0.5 2.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Alfred-Pellan 11.3 44.5 24.0 17.9 0.4 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Argenteuil – La Petite-Nation 11.1 43.0 24.8 18.9 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Avignon – La Mitis – Matane – Matapédia* 6.1 39.6 20.1 21.1 12.1 1.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Beauce 58.8 22.4 9.7 7.4 0.0 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Beauport – Côte-de-Beaupré – Île d'Orléans – Charlevoix 33.6 26.8 18.4 19.1 0.4 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Beauport – Limoilou 30.6 25.4 25.5 14.8 1.3 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bécancour – Nicolet – Saurel 11.5 24.3 22.0 40.0 0.0 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bellechasse – Les Etchemins – Lévis 50.8 20.6 13.6 11.5 0.0 3.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Beloeil – Chambly 9.3 29.3 31.2 27.6 0.4 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Berthier – Maskinongé 10.2 20.3 42.2 25.7 0.0 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bourassa 9.2 54.1 14.9 17.2 2.5 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brome – Missisquoi 11.4 43.8 24.6 17.4 0.3 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Brossard – Saint-Lambert 12.6 50.3 24.6 10.6 0.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Charlesbourg – Haute-Saint-Charles 42.2 23.2 20.0 12.4 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Châteauguay – Lacolle 11.2 39.1 23.1 24.4 0.3 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Chicoutimi – Le Fjord 16.4 31.1 29.9 20.5 0.0 2.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Compton – Stanstead 12.5 36.8 27.4 20.7 0.6 1.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Dorval – Lachine – LaSalle 10.7 53.1 24.2 9.4 0.4 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Drummond 17.7 26.5 30.5 22.8 0.0 2.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Gaspésie – Les Îles-de-la-Madeleine 6.1 38.7 32.5 20.9 0.8 1.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Gatineau 8.1 53.9 26.5 9.4 0.5 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hochelaga 6.9 29.9 30.8 27.8 1.4 3.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Honoré-Mercier 12.1 56.5 16.4 12.9 1.1 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Hull – Aylmer 7.7 51.5 31.4 6.5 1.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Joliette 10.0 28.2 25.8 33.2 0.4 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Jonquière 16.9 28.4 29.2 23.3 0.8 1.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
La Pointe-de-l'Île 8.0 28.6 26.7 33.6 1.1 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
La Prairie 11.9 36.5 22.9 26.2 0.4 2.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lac-Saint-Jean 33.3 18.3 28.5 18.4 0.0 1.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lac-Saint-Louis 17.3 63.6 13.5 2.7 0.0 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
LaSalle – Émard – Verdun 6.9 43.9 29.0 17.0 0.0 3.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Laurentides – Labelle 9.8 32.1 26.3 29.8 0.0 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Laurier – Sainte-Marie 4.3 24.4 37.8 28.3 1.8 3.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Laval-Les Îles 18.1 47.7 19.8 12.4 0.3 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Lévis – Lotbinière 50.2 21.6 14.7 11.4 0.2 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Longueuil – Charles-LeMoyne 9.6 34.9 23.7 27.9 0.9 2.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Longueuil – Saint-Hubert 8.7 30.0 31.2 27.3 0.6 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Louis-Hébert 27.2 34.8 20.8 14.4 0.2 2.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Louis-Saint-Laurent 50.5 21.1 16.0 10.2 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Manicouagan 10.2 29.4 17.5 41.2 0.0 1.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Marc-Aurèle-Fortin 11.8 41.6 23.3 21.4 0.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mégantic – L'Érable 35.4 28.1 21.9 12.3 0.0 2.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mirabel 10.3 26.1 30.0 31.4 0.0 2.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Montarville 10.9 32.5 24.7 28.4 1.1 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Montcalm 9.6 27.4 23.5 36.6 1.2 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Montmagny – L'Islet – Kamouraska – Rivière-du-Loup 29.0 28.5 24.2 16.1 0.6 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Mont-Royal 37.8 50.4 8.1 1.9 0.3 1.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Notre-Dame-de-Grâce – Westmount 14.1 57.7 21.8 2.7 0.7 3.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Outremont 9.7 33.7 43.9 8.2 0.9 3.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Papineau 4.7 51.8 26.1 12.2 2.4 2.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Pierre-Boucher – Les Patriotes – Verchères 10.2 28.3 24.3 28.6 0.0 8.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Pierrefonds – Dollard 20.0 58.6 16.4 3.5 0.0 1.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Pontiac 13.9 54.5 22.5 6.9 0.4 1.7 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Portneuf – Jacques Cartier 43.9 21.5 22.0 10.7 0.0 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Québec 21.8 28.9 27.0 18.8 1.0 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Repentigny 10.8 27.3 23.3 34.7 2.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Richmond – Arthabaska 31.6 24.7 24.2 17.2 1.4 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Rimouski-Neigette – Témiscouata – Les Basques 7.5 28.1 43.0 19.3 0.6 1.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Rivière-des-Mille-Îles 10.5 32.4 29.5 25.4 0.3 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Rivière-du-Nord 8.5 26.3 30.1 32.0 0.5 2.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Rosemont – La Petite-Patrie 4.3 20.7 49.2 21.0 1.7 3.1 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint-Hyacinthe – Bagot 16.8 27.5 28.5 24.4 0.5 2.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint-Jean 10.8 33.2 29.1 24.8 0.0 2.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint-Laurent 19.5 61.6 11.5 4.7 0.3 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint-Léonard – Saint-Michel 11.1 64.7 14.8 7.2 0.3 1.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint-Maurice – Champlain 16.4 41.4 20.8 19.2 0.3 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Salaberry – Suroît 10.0 29.2 30.5 28.2 0.6 1.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Shefford 12.8 39.0 23.7 22.2 0.0 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sherbrooke 9.4 29.8 37.3 20.5 1.0 2.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Terrebonne 11.3 28.0 25.6 33.0 0.3 1.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Thérèse-De Blainville 12.4 32.4 24.9 26.9 0.8 2.6 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Trois-Rivières 18.6 30.2 31.8 17.0 1.2 1.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vaudreuil – Soulanges 13.8 46.5 22.4 15.1 0.0 2.2 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Ville-Marie – Le Sud-Ouest – L'Île-des-Soeurs 11.9 50.8 23.4 8.5 0.5 5.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Vimy 13.4 46.2 20.9 16.7 0.5 2.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Acadie – Bathurst 7.6 50.7 39.4 0.0 0.0 2.3 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Beauséjour 11.4 69.0 15.1 0.0 0.0 4.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Fredericton 28.4 49.3 9.9 0.0 0.0 12.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Fundy Royal 37.1 40.9 17.5 0.0 0.6 3.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Madawaska – Restigouche 16.1 56.6 25.4 0.0 0.0 1.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Miramichi – Grand Lake 34.5 47.0 15.4 0.0 0.0 3.0 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Moncton – Riverview – Dieppe 21.5 57.8 16.1 0.0 0.0 4.6 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
New Brunswick Southwest 38.6 43.9 12.6 0.0 0.0 5.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Saint John – Rothesay 30.4 48.8 17.7 0.0 0.0 3.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Tobique – Mactaquac 37.0 46.6 11.3 0.0 0.0 5.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cape Breton – Canso 14.4 74.4 8.2 0.0 0.0 3.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Central Nova 25.9 58.2 10.2 0.0 1.3 4.3 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cumberland – Colchester 26.4 63.5 6.0 0.0 0.6 3.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Dartmouth – Cole Harbour 14.0 58.1 24.4 0.0 0.0 3.4 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Halifax 8.7 51.1 36.6 0.0 0.2 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Halifax West 15.7 68.6 11.7 0.0 0.0 3.9 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Kings – Hants 18.6 70.8 6.4 0.0 0.9 3.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sackville – Preston – Chezzetcook 14.9 48.0 34.4 0.0 0.0 2.8 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
South Shore – St. Margaret's 22.6 56.9 16.8 0.0 0.8 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Sydney – Victoria 10.6 73.3 13.0 0.0 0.6 2.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
West Nova 25.7 62.4 7.7 0.0 0.0 4.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Cardigan 16.2 65.0 11.1 0.0 1.3 6.4 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Charlottetown 14.8 56.3 23.1 0.0 0.0 5.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Egmont 29.0 49.3 19.2 0.0 0.0 2.5 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Malpeque 17.6 62.1 11.2 0.0 0.0 9.2 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Avalon* 11.1 55.9 14.4 0.0 18.0 0.5 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Bonavista – Burin – Trinity 10.1 81.8 7.3 0.0 0.0 0.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Coast of Bays – Central – Notre Dame 18.3 74.8 6.1 0.0 0.0 0.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Labrador 13.9 71.8 14.4 0.0 0.0 0.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Long Range Mountains 12.2 73.9 11.3 0.0 0.0 2.7 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
St. John's East 6.5 46.8 45.3 0.0 0.3 1.1 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
St. John's South – Mount Pearl 4.5 57.9 36.8 0.0 0.0 0.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Northwest Territories 18.0 48.3 30.8 0.0 0.0 2.8 0.0 99%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Nunavut 24.8 47.2 26.5 0.0 0.0 1.5 0.0 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Low / Bas 30.1 36.7 20.3 0.0 0.0 5.3 0.2
Yukon 24.0 53.6 19.5 0.0 0.0 2.9 0.0 100%
High / Haut 36.9 42.6 18.4 0.0 0.0 8.4 2.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment