Hover shows employee details, dims more recent hires, and tallies office distribution of similarly senior staff. Adapted from Radial Tidy Tree by M. Bostock. block
Last active
January 13, 2025 15:13
-
-
Save WardCunningham/8ed902eb426213e19645a595f81a30b6 to your computer and use it in GitHub Desktop.
Radial Organization Chart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.13/d3.js"></script> | |
<link rel="icon" href="/favicon.png"> | |
<style> | |
.node circle { | |
fill: #fff; | |
stroke: steelblue; | |
stroke-width: 1.5px; | |
} | |
.node text { | |
font: 10px sans-serif; | |
} | |
.link { | |
fill: none; | |
stroke: #ccc; | |
stroke-opacity: 0.4; | |
stroke-width: 1.5px; | |
} | |
th { | |
text-align: right; | |
padding-right: 10px; | |
} | |
#person_detail { | |
margin-bottom: 16px; | |
} | |
#corner_tip { | |
position: fixed; | |
background-color: white; | |
opacity: 0.9; | |
padding: 10px; | |
} | |
</style> | |
<div id="d" style="position: relative; border: 0px solid green; width: <%= @diameter %>px; height: 900px; margin: 0px auto !important;"> | |
<div id="corner_tip"> | |
<div id="person_detail"></div> | |
<table id="people_count_table"></table> | |
</div> | |
</div> | |
<script> | |
var diameter = 1200 | |
var tree = d3.layout.tree() | |
.size([360, diameter / 2 - 120]) | |
.separation(function(a, b) { return (a.parent == b.parent ? 1 : 2) / a.depth; }); | |
var colorOrdinal = d3.scale.category20(); | |
var diagonal = d3.svg.diagonal.radial() | |
.projection(function(d) { return [d.y, d.x / 180 * Math.PI]; }); | |
var svg = d3.select("#d").append("svg") | |
.attr("width", diameter) | |
.attr("height", diameter - 10) | |
.append("g") | |
.attr("transform", "translate(" + ((diameter/2)-60) + "," + ((diameter / 2) - 65) + ")"); | |
// python -m SimpleHTTPServer 8000 | |
d3.json( "organization.json" , function(error, people) { | |
var this_start = null | |
function lastName (name) { return name.replace(/\b[A-Z]\. /g,'') } | |
function startsFirst (a,b) { return string_to_date(a.start) - string_to_date(b.start) } | |
people.sort(startsFirst) | |
var root | |
function isManager (who) { return who.email == person.manager } | |
for (var person of people) { | |
var manager = people.find(isManager) | |
if (!manager || person.email == manager.email) { | |
root = person | |
} else { | |
manager.children = manager.children || [] | |
manager.children.push(person) | |
} | |
} | |
var nodes = tree.nodes(root), | |
links = tree.links(nodes) | |
var link = svg.selectAll(".link") | |
.data(links) | |
.enter().append("path") | |
.attr("class", "link") | |
.attr("d", diagonal); | |
var node = svg.selectAll(".node") | |
.data(nodes) | |
.attr("opacity",1) | |
.enter().append("g") | |
.attr("class", "node") | |
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + d.y + ")"; }) | |
node.append("circle") | |
.attr("r", 4) | |
.attr("opacity",1) | |
.style("fill", function(d) { return colorOrdinal(d.office) } ) | |
.on('click', find) | |
function update_person (d) { | |
d3.select("#person_detail") | |
.html( | |
"<table>"+ | |
"<tr><th>Name<td>"+d.name+ | |
"<tr><th>Office<td>"+d.office+ | |
"<tr><th>Start<td>"+d.start+ | |
"</table>") | |
} | |
function update_counts () { | |
var peopleCount = {} | |
var total = 0 | |
for (var person of people) { | |
if (!this_start || string_to_date(person.start) <= this_start) { | |
var office = person.office | |
peopleCount[office] = peopleCount[office] || 0 | |
peopleCount[office]++ | |
total++ | |
} | |
} | |
var officeTuples = []; | |
for (var office in peopleCount) { | |
officeTuples.push([office, peopleCount[office]]) | |
} | |
officeTuples.sort(function(a,b) { | |
return a[0] > b[0] ? 1 : -1 | |
}) | |
var table = d3.select("#people_count_table") | |
function row(tuple) { | |
var tr = table.append("tr") | |
var th = tr.append("th") | |
var td = tr.append("td") | |
var span = td.append("span") | |
th.text(tuple[0]); | |
span.html(tuple[1]) | |
} | |
table.selectAll("*").remove() | |
for (var tuple of officeTuples) { | |
row(tuple) | |
} | |
row(['Total', total]) | |
} | |
update_counts() | |
node.append("text") | |
.attr("dy", ".31em") | |
.attr("opacity",1) | |
.attr("text-anchor", function(d) { return d.x < 180 ? "start" : "end"; }) | |
.attr("transform", function(d) { return d.x < 180 ? "translate(8)" : "rotate(180)translate(-8)"; }) | |
.text(function(d) { return lastName(d.name) }); | |
node.selectAll("circle") | |
.on("mouseover", function(d, i) { | |
this_start = string_to_date(d.start); | |
d3.transition().duration(300).selectAll(".node").attr("opacity", | |
function(d){ | |
return string_to_date(d.start) > this_start ? .2 : 1; | |
} | |
) | |
d3.transition().duration(300).selectAll(".circle").attr("opacity", | |
function(d){ | |
if(string_to_date(d.start) > this_start){ | |
return .2 | |
} else { | |
// Count people here | |
return 1; | |
} | |
} | |
) | |
d3.select(this).attr("r", 7) | |
update_person(d) | |
update_counts() | |
}) | |
node.selectAll("circle") | |
.on("mouseout", function(d, i) { | |
this_start = null | |
d3.select(this).attr("r", 4) | |
var d3Scale = d3.time.scale().domain([string_to_date(d.start), new Date() ]).range([0,2000]); | |
d3.selectAll(".node").transition().attr("opacity",1).duration(0).delay(function(d,i) { | |
return d3Scale(string_to_date(d.start)); | |
}) | |
d3.selectAll(".circle").transition().attr("opacity",1).duration(0).delay(function(d,i) { | |
return d3Scale(string_to_date(d.start)); | |
}) | |
update_counts() | |
}) | |
}); | |
function string_to_date(string_date){ | |
return new Date(string_date); | |
} | |
function find(person) { | |
window.location = '//google.com?q=' + person.name | |
} | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "K. T. Richardson", | |
"email": "[email protected]", | |
"manager": null, | |
"start": "2007-10-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. A. Baker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-10-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. D. Flores", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-2-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. F. Harris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-4-3", | |
"office": "ORD" | |
}, | |
{ | |
"name": "O. C. Parker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-5-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. M. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-5-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. S. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-3-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. A. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-3-5", | |
"office": "ORD" | |
}, | |
{ | |
"name": "H. P. Collins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-6-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "A. O. Baker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-8-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "C. I. Nguyen", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-12-24", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. H. Martinez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-4-15", | |
"office": "ORD" | |
}, | |
{ | |
"name": "C. H. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-5-26", | |
"office": "ORD" | |
}, | |
{ | |
"name": "F. S. Anderson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-2-25", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. O. Price", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-10-25", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. O. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-3-23", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. D. Barnes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-8-12", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. H. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-9-25", | |
"office": "SFO" | |
}, | |
{ | |
"name": "T. D. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-9-16", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. N. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-5-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. E. Cox", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-12-14", | |
"office": "SFO" | |
}, | |
{ | |
"name": "G. N. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-10-24", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. M. Ortiz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-7-22", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. R. Wood", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-5-6", | |
"office": "SFO" | |
}, | |
{ | |
"name": "H. B. Gray", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-12-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "W. I. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-6-24", | |
"office": "PDX" | |
}, | |
{ | |
"name": "M. J. Hall", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-6-23", | |
"office": "PDX" | |
}, | |
{ | |
"name": "M. O. Foster", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-3-15", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. L. Bailey", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-12-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. D. Perez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-7-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. E. Sullivan", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-4-12", | |
"office": "SFO" | |
}, | |
{ | |
"name": "H. A. Cox", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-2-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. N. Brooks", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-1-25", | |
"office": "PDX" | |
}, | |
{ | |
"name": "A. C. Torres", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-5-7", | |
"office": "SFO" | |
}, | |
{ | |
"name": "R. O. Reyes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-7-22", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. K. Cook", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-2-26", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. I. Ortiz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-11-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. P. Robinson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-11-24", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. K. Richardson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-7-5", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. G. Cox", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-10-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. I. Cox", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-8-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. M. Cox", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-10-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. L. Flores", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-3-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. S. Campbell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-4-10", | |
"office": "SFO" | |
}, | |
{ | |
"name": "C. C. Fisher", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-1-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "A. J. Clark", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-1-19", | |
"office": "SFO" | |
}, | |
{ | |
"name": "W. O. Sanchez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-1-21", | |
"office": "ORD" | |
}, | |
{ | |
"name": "K. E. Walker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-10-21", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. J. Miller", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-1-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "J. D. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-2-29", | |
"office": "SFO" | |
}, | |
{ | |
"name": "T. P. Price", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-7-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. C. Stewart", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-10-8", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. B. Parker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-5-16", | |
"office": "SFO" | |
}, | |
{ | |
"name": "F. K. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-1-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. L. Davis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-12-13", | |
"office": "SFO" | |
}, | |
{ | |
"name": "C. L. Ross", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-5-4", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. K. Nelson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-8-23", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. O. Cook", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-5-21", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. F. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-9-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "M. S. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-10-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. S. Garcia", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-2-4", | |
"office": "SFO" | |
}, | |
{ | |
"name": "H. E. Phillips", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-2-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. L. Cruz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-9-17", | |
"office": "SFO" | |
}, | |
{ | |
"name": "H. E. Torres", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-3-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. P. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-9-14", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. T. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-6-10", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. P. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-11-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. M. Collins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-4-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "E. C. Wood", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-2-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. I. Collins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-8-25", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. D. Harris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-7-14", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. O. Mitchell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-10-29", | |
"office": "PDX" | |
}, | |
{ | |
"name": "W. R. Parker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-10-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. W. Carter", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-6-28", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. R. Torres", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-5-25", | |
"office": "ORD" | |
}, | |
{ | |
"name": "C. M. Kelly", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-10-14", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. J. Cooper", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-3-3", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. T. Richardson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-9-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. M. Nguyen", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-10-6", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. R. Wilson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-10-4", | |
"office": "ORD" | |
}, | |
{ | |
"name": "G. G. Powell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-5-15", | |
"office": "PDX" | |
}, | |
{ | |
"name": "W. B. Fisher", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-5-21", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. A. Russell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-4-6", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. D. Perez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-3-4", | |
"office": "SFO" | |
}, | |
{ | |
"name": "M. W. Diaz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-12-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. O. Collins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-11-2", | |
"office": "SFO" | |
}, | |
{ | |
"name": "M. A. Torres", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-5-6", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. O. Anderson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-1-13", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. C. Perez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-1-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. L. Ward", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-9-10", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. L. Powell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-3-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. G. Baker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-12-23", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. M. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-7-12", | |
"office": "SFO" | |
}, | |
{ | |
"name": "F. F. Ward", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-10-4", | |
"office": "SFO" | |
}, | |
{ | |
"name": "W. S. Nelson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-12-26", | |
"office": "SFO" | |
}, | |
{ | |
"name": "G. P. Martin", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-1-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. W. Powell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-5-23", | |
"office": "SFO" | |
}, | |
{ | |
"name": "D. E. Wood", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-8-28", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. D. Parker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-8-14", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. O. Phillips", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-3-2", | |
"office": "SFO" | |
}, | |
{ | |
"name": "M. G. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-9-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. P. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-11-8", | |
"office": "ORD" | |
}, | |
{ | |
"name": "I. L. Bennett", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-3-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. H. Ortiz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-4-28", | |
"office": "ORD" | |
}, | |
{ | |
"name": "J. M. Wright", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-9-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. P. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-1-8", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. S. Diaz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-2-16", | |
"office": "PDX" | |
}, | |
{ | |
"name": "W. F. Williams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-1-13", | |
"office": "ORD" | |
}, | |
{ | |
"name": "R. R. Powell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-2-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. K. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-2-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. J. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-8-21", | |
"office": "SFO" | |
}, | |
{ | |
"name": "T. J. Robinson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-12-24", | |
"office": "SFO" | |
}, | |
{ | |
"name": "I. A. Scott", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-9-8", | |
"office": "SFO" | |
}, | |
{ | |
"name": "F. E. Hall", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-3-11", | |
"office": "SFO" | |
}, | |
{ | |
"name": "M. R. Bennett", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-5-11", | |
"office": "SFO" | |
}, | |
{ | |
"name": "R. B. Hill", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-8-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. E. Morgan", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-11-28", | |
"office": "ORD" | |
}, | |
{ | |
"name": "C. T. Baker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-10-26", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. W. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-1-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. L. Wright", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-10-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. B. Brown", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-12-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. F. Richardson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-7-28", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. S. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-8-1", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. S. Moore", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-9-5", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. D. Brooks", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-8-22", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. A. Cruz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-10-18", | |
"office": "ORD" | |
}, | |
{ | |
"name": "R. D. Bailey", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-3-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "W. R. Lopez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-5-1", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. K. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-7-13", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. H. Baker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-9-7", | |
"office": "SFO" | |
}, | |
{ | |
"name": "W. S. Williams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-2-21", | |
"office": "SFO" | |
}, | |
{ | |
"name": "C. O. Clark", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-2-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. K. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-2-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. G. Cruz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-7-10", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. E. Brown", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-1-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "E. G. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-5-4", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. T. Bennett", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-9-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. T. Watson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-4-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. A. Ward", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-10-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. G. Peterson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-11-9", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. H. Walker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-7-19", | |
"office": "ORD" | |
}, | |
{ | |
"name": "M. C. Gutierrez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-8-22", | |
"office": "ORD" | |
}, | |
{ | |
"name": "P. D. Nguyen", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-2-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. P. Lopez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-8-6", | |
"office": "SFO" | |
}, | |
{ | |
"name": "P. P. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-12-17", | |
"office": "SFO" | |
}, | |
{ | |
"name": "P. O. Green", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-12-11", | |
"office": "ORD" | |
}, | |
{ | |
"name": "S. A. Gray", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-5-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. M. Collins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-6-11", | |
"office": "PDX" | |
}, | |
{ | |
"name": "J. T. Watson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-3-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. E. Peterson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-10-4", | |
"office": "SFO" | |
}, | |
{ | |
"name": "S. C. Gray", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-12-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "A. E. Gray", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-3-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. T. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-5-1", | |
"office": "ORD" | |
}, | |
{ | |
"name": "W. J. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-6-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. H. Phillips", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-1-10", | |
"office": "SFO" | |
}, | |
{ | |
"name": "G. T. Reed", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-9-19", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. T. Harris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-6-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. K. Jones", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-4-11", | |
"office": "PDX" | |
}, | |
{ | |
"name": "J. S. Barnes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-6-23", | |
"office": "SFO" | |
}, | |
{ | |
"name": "B. P. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-1-10", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. P. Baker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-3-2", | |
"office": "ORD" | |
}, | |
{ | |
"name": "E. O. Sullivan", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-12-7", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. I. Scott", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-8-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. F. Sullivan", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-11-3", | |
"office": "SFO" | |
}, | |
{ | |
"name": "F. B. Russell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-11-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. S. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-6-18", | |
"office": "SFO" | |
}, | |
{ | |
"name": "I. J. Brown", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-6-19", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. F. Lewis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-10-5", | |
"office": "SFO" | |
}, | |
{ | |
"name": "P. O. Reyes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-1-4", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. F. Morgan", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-9-16", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. P. Ortiz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-8-28", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. F. Young", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-12-25", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. K. Hernandez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-11-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. N. Davis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-9-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. I. Thomas", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-10-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. N. Moore", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-7-22", | |
"office": "SFO" | |
}, | |
{ | |
"name": "D. D. Garcia", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-1-29", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. J. Williams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-1-1", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. E. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-3-6", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. M. Hall", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-10-29", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. I. Ramirez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-3-24", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. F. Nguyen", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-6-20", | |
"office": "ORD" | |
}, | |
{ | |
"name": "J. I. Murphy", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-9-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "F. B. Adams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-9-13", | |
"office": "SFO" | |
}, | |
{ | |
"name": "H. T. Scott", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-9-4", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. H. Sanchez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-7-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. H. Moore", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-3-4", | |
"office": "PDX" | |
}, | |
{ | |
"name": "J. P. Edwards", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-2-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. A. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-3-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "R. B. Nelson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-5-1", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. R. Martin", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-7-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. I. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-7-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. W. Cruz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-8-19", | |
"office": "SFO" | |
}, | |
{ | |
"name": "C. F. Clark", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-6-10", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. B. Hernandez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-11-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. F. Powell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-5-11", | |
"office": "ORD" | |
}, | |
{ | |
"name": "W. E. Clark", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-2-14", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. A. Peterson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-5-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "A. M. Peterson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-4-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. S. Sanchez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-11-4", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. D. Campbell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-6-15", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. S. Edwards", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-8-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. M. Brooks", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-9-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "F. T. Hall", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-10-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. B. Butler", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-12-11", | |
"office": "ORD" | |
}, | |
{ | |
"name": "A. E. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-6-23", | |
"office": "SFO" | |
}, | |
{ | |
"name": "D. T. Evans", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-9-11", | |
"office": "SFO" | |
}, | |
{ | |
"name": "B. D. Thompson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-11-15", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. M. Thompson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-8-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "J. O. Green", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-12-5", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. A. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-7-26", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. C. Ward", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-7-16", | |
"office": "ORD" | |
}, | |
{ | |
"name": "D. I. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-10-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "H. E. Collins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-3-18", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. O. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-11-23", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. D. White", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-2-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "W. E. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-10-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. H. Robinson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-3-23", | |
"office": "SFO" | |
}, | |
{ | |
"name": "B. E. Martin", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-6-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. J. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-8-13", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. O. Richardson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-6-27", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. K. Robinson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-10-20", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. S. Cooper", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-1-6", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. K. Brown", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-6-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. G. Green", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-3-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "J. A. Thomas", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-2-21", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. O. Lopez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-5-6", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. B. Murphy", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-7-3", | |
"office": "SFO" | |
}, | |
{ | |
"name": "E. T. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-8-21", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. R. Parker", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-2-5", | |
"office": "ORD" | |
}, | |
{ | |
"name": "B. J. Davis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-12-27", | |
"office": "SFO" | |
}, | |
{ | |
"name": "C. L. Smith", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-12-29", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. F. Lewis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-7-6", | |
"office": "PDX" | |
}, | |
{ | |
"name": "M. S. Roberts", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-10-28", | |
"office": "SFO" | |
}, | |
{ | |
"name": "S. D. Jenkins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-1-6", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. R. Rivera", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-2-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. O. Anderson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-2-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "C. S. Evans", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-6-24", | |
"office": "SFO" | |
}, | |
{ | |
"name": "H. O. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-7-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. O. Perez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-11-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. T. Hughes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-2-21", | |
"office": "SFO" | |
}, | |
{ | |
"name": "I. R. Perez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-9-1", | |
"office": "SFO" | |
}, | |
{ | |
"name": "W. O. Miller", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-7-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. R. Anderson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-6-16", | |
"office": "SFO" | |
}, | |
{ | |
"name": "P. R. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-10-22", | |
"office": "ORD" | |
}, | |
{ | |
"name": "M. I. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-7-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "C. E. Stewart", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-12-17", | |
"office": "ORD" | |
}, | |
{ | |
"name": "I. O. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-8-24", | |
"office": "SFO" | |
}, | |
{ | |
"name": "T. M. Cook", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-4-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "E. G. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-6-8", | |
"office": "SFO" | |
}, | |
{ | |
"name": "R. T. Carter", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-12-12", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. G. Gomez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-3-22", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. A. Cox", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-8-10", | |
"office": "ORD" | |
}, | |
{ | |
"name": "E. F. Richardson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-2-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "A. J. Powell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-9-17", | |
"office": "SFO" | |
}, | |
{ | |
"name": "G. T. Johnson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-8-18", | |
"office": "SFO" | |
}, | |
{ | |
"name": "A. D. Hernandez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-4-29", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. E. Evans", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-12-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. S. Adams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-9-10", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. I. Robinson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-10-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. F. Cruz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-6-16", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. H. Myers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-5-15", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. C. Miller", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2010-5-29", | |
"office": "SFO" | |
}, | |
{ | |
"name": "I. G. Gutierrez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-10-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. N. Williams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-8-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. P. Clark", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-10-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. A. Carter", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-6-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. B. Rogers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-5-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "G. A. Jenkins", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-4-8", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. A. Torres", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-6-21", | |
"office": "SFO" | |
}, | |
{ | |
"name": "R. S. Foster", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-6-17", | |
"office": "ORD" | |
}, | |
{ | |
"name": "D. F. Ward", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-12-11", | |
"office": "ORD" | |
}, | |
{ | |
"name": "M. E. Barnes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-4-25", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. D. Lee", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-3-22", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. E. Carter", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-12-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "K. K. Ortiz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-7-11", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. W. Green", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-6-11", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. H. Campbell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-6-22", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. W. Wilson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-6-17", | |
"office": "SFO" | |
}, | |
{ | |
"name": "C. W. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-3-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. E. Clark", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-5-14", | |
"office": "ORD" | |
}, | |
{ | |
"name": "K. M. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-1-16", | |
"office": "PDX" | |
}, | |
{ | |
"name": "P. W. Garcia", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-10-19", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. S. Miller", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2003-4-19", | |
"office": "SFO" | |
}, | |
{ | |
"name": "I. R. Mitchell", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-1-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. J. Adams", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-5-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. T. Gray", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-11-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. N. Watson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-3-11", | |
"office": "PDX" | |
}, | |
{ | |
"name": "O. J. White", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-10-18", | |
"office": "SFO" | |
}, | |
{ | |
"name": "K. W. Ortiz", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-1-18", | |
"office": "ORD" | |
}, | |
{ | |
"name": "L. H. Foster", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2005-5-12", | |
"office": "PDX" | |
}, | |
{ | |
"name": "C. M. Reyes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-1-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. F. Ward", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2007-10-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "L. L. Evans", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-12-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "N. L. Price", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-1-18", | |
"office": "SFO" | |
}, | |
{ | |
"name": "S. J. Lee", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-9-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "P. K. Rodriguez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-1-16", | |
"office": "ORD" | |
}, | |
{ | |
"name": "J. F. Perry", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-12-20", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. C. Turner", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-10-18", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. N. Jones", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-9-3", | |
"office": "SFO" | |
}, | |
{ | |
"name": "P. C. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-6-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. L. Stewart", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-10-4", | |
"office": "SFO" | |
}, | |
{ | |
"name": "R. P. Lopez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-8-13", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. I. Wilson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-6-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "I. L. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2016-5-2", | |
"office": "PDX" | |
}, | |
{ | |
"name": "W. I. Lopez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2012-6-5", | |
"office": "ORD" | |
}, | |
{ | |
"name": "L. A. Gonzalez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2008-11-1", | |
"office": "PDX" | |
}, | |
{ | |
"name": "M. G. Roberts", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2013-3-9", | |
"office": "SFO" | |
}, | |
{ | |
"name": "D. I. Lopez", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-11-19", | |
"office": "ORD" | |
}, | |
{ | |
"name": "R. F. Martin", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2006-8-14", | |
"office": "SFO" | |
}, | |
{ | |
"name": "O. J. Myers", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-3-5", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. D. Morris", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-2-17", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. L. Brooks", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2009-7-27", | |
"office": "PDX" | |
}, | |
{ | |
"name": "T. N. Lewis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-4-3", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. E. Edwards", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-11-6", | |
"office": "SFO" | |
}, | |
{ | |
"name": "D. O. Hall", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2015-3-15", | |
"office": "PDX" | |
}, | |
{ | |
"name": "S. I. Cook", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-10-21", | |
"office": "PDX" | |
}, | |
{ | |
"name": "N. B. Lewis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2014-6-7", | |
"office": "PDX" | |
}, | |
{ | |
"name": "B. O. Nelson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-1-8", | |
"office": "PDX" | |
}, | |
{ | |
"name": "D. A. Lewis", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2001-3-3", | |
"office": "SFO" | |
}, | |
{ | |
"name": "S. K. Martin", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2004-12-15", | |
"office": "SFO" | |
}, | |
{ | |
"name": "L. K. Reyes", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2011-9-25", | |
"office": "ORD" | |
}, | |
{ | |
"name": "H. T. Carter", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2002-7-11", | |
"office": "SFO" | |
}, | |
{ | |
"name": "J. T. Jackson", | |
"email": "[email protected]", | |
"manager": "[email protected]", | |
"start": "2000-7-1", | |
"office": "PDX" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment