From 6563920df24865a5ebe3c46c72c5fb1dd41bdb92 Mon Sep 17 00:00:00 2001 From: wmui51 Date: Tue, 20 Aug 2024 16:56:44 -0700 Subject: [PATCH 1/2] Feat/allow multiple countdowns (#425) * allow multiple instances of the countdown clock * set time via storyblok * fix offset * add isDST blok prop --- src/components/giving-tuesday/Countdown.js | 165 ++++++++++----------- 1 file changed, 76 insertions(+), 89 deletions(-) diff --git a/src/components/giving-tuesday/Countdown.js b/src/components/giving-tuesday/Countdown.js index c66dfbd5..c96b6e2d 100644 --- a/src/components/giving-tuesday/Countdown.js +++ b/src/components/giving-tuesday/Countdown.js @@ -1,10 +1,14 @@ -import React, { useEffect, useState } from 'react'; +import React, { useEffect, useMemo, useState } from 'react'; import classNames from 'classnames'; import SbEditable from 'storyblok-react'; import CountdownPie from './CountdownPie'; import UseCountdown from '../../hooks/useCountdown'; +// use useId when it becomes available +const generateClassName = (key) => + `${key}-${Math.floor(Math.random() * 100000, 5)}`; + const getDescriptorString = (descriptor, time) => { return time !== 1 ? `${descriptor}s` : descriptor; }; @@ -12,109 +16,92 @@ const getDescriptorString = (descriptor, time) => { const convertDaysToHours = (days) => (days ? days * 24 : 0); const Countdown = ({ blok }) => { - const { date, hasDays, hourPieRange, useNew } = blok; + const { date, dayPieRange, hasDays, hourPieRange, isDST } = blok; const [countdownDate, setCountdownDate] = useState(null); const [days, hours, minutes, seconds] = UseCountdown(countdownDate) || []; const displayHours = hasDays ? hours : convertDaysToHours(days) + hours; const displayHourPieRange = hasDays ? 24 : hourPieRange; + const noTime = days + hours + minutes + seconds <= 0; + const daysClassName = useMemo(() => generateClassName('days'), []); + const hoursClassName = useMemo(() => generateClassName('hours'), []); + const minutesClassName = useMemo(() => generateClassName('minutes'), []); + const secondsClassName = useMemo(() => generateClassName('seconds'), []); + const pacificTimeOffset = useMemo(() => { + const pacificTime = isDST ? 420 : 480; + return pacificTime * 60 * 1000; + }, [isDST]); useEffect(() => { if (!countdownDate) { - if (!date) { - if (useNew) { - /** - * manually set date to 04/05/2024 7PM w/ a UTC offset (no daylight savings) - * this should only stay for the current campaign, can remove this and make - * component purely storyblok configurable after campaign - */ - setCountdownDate(new Date(Date.UTC(2024, 3, 6, 2, 0, 0))); - } else { - /** - * manually set date to 04/04/2024 7AM w/ a UTC offset (no daylight savings) - * this should only stay for the current campaign, can remove this and make - * component purely storyblok configurable after campaign - */ - setCountdownDate(new Date(Date.UTC(2024, 3, 4, 14, 0, 0))); - } - } else { - /** - * the date prop returns in the following format: "2023-11-21 23:56" - * we have convert it to be usable for the js Date object - */ - const dateArray = date.split(' '); - - setCountdownDate(new Date(`${dateArray[0]}T${dateArray[1]}`)); - } + /** + * the date prop returns in the following format: "2023-11-21 23:56" + * we have convert it to be a usable for the js Date object + */ + const blokDateArray = date?.split(' '); + const dateArray = blokDateArray?.[0]?.split('-'); + const timeArray = blokDateArray?.[1]?.split(':'); + const blokDateObj = new Date( + `${dateArray?.[0]}-${dateArray?.[1]}-${dateArray?.[2]} ${timeArray?.[0]}:${timeArray?.[1]}` + ); + const utcOffset = blokDateObj?.getTimezoneOffset() * 60 * 1000; + const timezoneDifference = utcOffset - pacificTimeOffset; + const utcDateObj = new Date( + blokDateObj?.getTime() + utcOffset - timezoneDifference + ); + setCountdownDate( + new Date( + Date.UTC( + utcDateObj?.getFullYear(), + utcDateObj?.getMonth(), + utcDateObj?.getDate(), + utcDateObj?.getHours(), + utcDateObj?.getMinutes() + ) + ) + ); } - }, [countdownDate, setCountdownDate]); + }, [date, countdownDate, setCountdownDate]); return ( - {days + hours + minutes + seconds <= 0 ? ( -
0, - })} - > - {days > 0 && hasDays && ( - - 0 - - )} - - 0 - - - 0 - +
0 && hasDays, + })} + role="timer" + > + {days > 0 && hasDays && ( - 0 + {noTime ? 0 : days} -
- ) : ( -
0, - })} - role="timer" + )} + - {days > 0 && hasDays && ( - - {days} - - )} - - {displayHours} - - - {minutes} - - - {seconds} - -
- )} + {noTime ? 0 : displayHours} + + + {noTime ? 0 : minutes} + + + {noTime ? 0 : seconds} + +
); }; From 7a8864c2bc3405b6c6ec1b1611a53bdac1df9ddd Mon Sep 17 00:00:00 2001 From: wmui51 Date: Tue, 22 Oct 2024 13:28:42 -0700 Subject: [PATCH 2/2] update endowed positions dataset (#448) * update endowed positions dataset * update entry --- src/fixtures/endowedPositions.json | 2779 ++++++++++++++-------------- 1 file changed, 1407 insertions(+), 1372 deletions(-) diff --git a/src/fixtures/endowedPositions.json b/src/fixtures/endowedPositions.json index 2c052ffe..3916df3d 100644 --- a/src/fixtures/endowedPositions.json +++ b/src/fixtures/endowedPositions.json @@ -1,9568 +1,9603 @@ [ { - "KEY": "BusinessKAUNS2640688", + "Key": "BusinessKAUNS2640688", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Adams Distinguished Professorship in Management", "CURRENT HOLDER": "Glenn Carroll", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKGSBA3079696", + "Key": "BusinessKGSBA3079696", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Adams Distinguished Professorship in Management", "CURRENT HOLDER": "J. Darrell Duffie", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAUNR9822610", + "Key": "BusinessKAUNR9822610", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Adams Distinguished Professorship in Management", "CURRENT HOLDER": "Yossi Feinberg", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRAAL2988897", + "Key": "BusinessKRAAL2988897", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Dhirubhai Ambani Faculty Fellow in Entrepreneurship", "CURRENT HOLDER": "Garth Saloner", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABUV9693145", + "Key": "BusinessKABUV9693145", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Amman Mineral Faculty Fellow", "CURRENT HOLDER": "Joseph D. Piotroski", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABDH5358460", + "Key": "BusinessKABDH5358460", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Applied Econometrics Professorship", "CURRENT HOLDER": "Guido Imbens", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAUOD5281838", + "Key": "BusinessKAUOD5281838", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Ernest C. Arbuckle Professorship in the Graduate School of Business", "CURRENT HOLDER": "Kathryn L. Shaw", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQFN3901899", + "Key": "BusinessKAQFN3901899", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The David S. and Ann M. Barlow Professorship in the Graduate School of Business", "CURRENT HOLDER": "Kenneth Shotts", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJER5555742", + "Key": "BusinessKEJER5555742", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Botha-Chan Faculty Scholar", "CURRENT HOLDER": "Juliane Begenau", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJER9650835", + "Key": "BusinessKEJER9650835", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Botha-Chan Faculty Scholar", "CURRENT HOLDER": "Daniela Saban", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJER5503531", + "Key": "BusinessKEJER5503531", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Botha-Chan Faculty Scholar", "CURRENT HOLDER": "Chris Tonetti", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJAG2988897", + "Key": "BusinessKEJAG2988897", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Botha-Chan Professorship", "CURRENT HOLDER": "Garth Saloner", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAZC10018596", + "Key": "BusinessKBAZC10018596", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The BP Faculty Fellow in Global Management", "CURRENT HOLDER": "Dale Miller", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQGC99992802", + "Key": "BusinessKAQGC99992802", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Frank E. Buck Professorship in the Graduate School of Business", "CURRENT HOLDER": "Charles A. O’Reilly III", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessNTAGE9824699", + "Key": "BusinessNTAGE9824699", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Business School Trust Faculty Fellow", "CURRENT HOLDER": "Lanier Benkard", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessNTAGE9674221", + "Key": "BusinessNTAGE9674221", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Business School Trust Faculty Fellow", "CURRENT HOLDER": "Jonathan Levav", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessNTAGE5281838", + "Key": "BusinessNTAGE5281838", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Business School Trust Faculty Fellow", "CURRENT HOLDER": "Kathryn Shaw", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessNTAGE9866575", + "Key": "BusinessNTAGE9866575", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Business School Trust Faculty Fellow", "CURRENT HOLDER": "Stefanos Zenios", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessNTAGE5771555", + "Key": "BusinessNTAGE5771555", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Business School Trust Faculty Scholar", "CURRENT HOLDER": "Jinhwan Kim", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJCF5358460", + "Key": "BusinessKEJCF5358460", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Chai-Siriwatwechakul Faculty Fellow", "CURRENT HOLDER": "Guido Imbens", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZEB5205215", + "Key": "BusinessKAZEB5205215", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Class of 1968/Ed Zschau Professorship", "CURRENT HOLDER": "Dale T. Miller", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABTP5543386", + "Key": "BusinessKABTP5543386", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Class of 1988 Professorship", "CURRENT HOLDER": "Rebecca Diamond", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRACN5613937", + "Key": "BusinessKRACN5613937", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Michelle R. Clayman Faculty Fellow", "CURRENT HOLDER": "Suzie Noh", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABKG5240506", + "Key": "BusinessKABKG5240506", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Edith M. Cornell Business Professorship", "CURRENT HOLDER": "Neil Malhotra", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABMQ0", + "Key": "BusinessKABMQ0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The RoAnn Costin Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZBA5240506", + "Key": "BusinessKAZBA5240506", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Coulter Family Faculty Fellow", "CURRENT HOLDER": "Neil Malhotra", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABJZ5359958", + "Key": "BusinessKABJZ5359958", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Davies Family Professorship in the Graduate School of Business", "CURRENT HOLDER": "Andrew B. Hall", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAUSP1684786", + "Key": "BusinessKAUSP1684786", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Thomas D. Dee II Professorship in the Graduate School of Business", "CURRENT HOLDER": "Jeffrey Pfeffer", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRADK7396609", + "Key": "BusinessKRADK7396609", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Denning Professorship in Global Business and the Economy", "CURRENT HOLDER": "Condoleezza Rice", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRADL5060223", + "Key": "BusinessKRADL5060223", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Steven and Roberta Denning Professorship", "CURRENT HOLDER": "Amit Seru", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZFA4889770", + "Key": "BusinessKAZFA4889770", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Katherine and David deWilde Faculty Fellow", "CURRENT HOLDER": "Gabriel Weintraub", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZAI5543386", + "Key": "BusinessKAZAI5543386", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Susan Ford Dorsey Faculty Fellow", "CURRENT HOLDER": "Rebecca Diamond", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQUC8033284", + "Key": "BusinessKAQUC8033284", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Marriner S. Eccles Professorship in Public and Private Management", "CURRENT HOLDER": "Maureen F. McNichols", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABDG4072369", + "Key": "BusinessKABDG4072369", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Economics of Technology Professorship", "CURRENT HOLDER": "Susan C. Athey", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABUN5421352", + "Key": "BusinessKABUN5421352", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The José E. Feliciano and Kwanza Jones SUPERCHARGED Initiative Faculty Fellow", "CURRENT HOLDER": "Juan Carlos Suarez Serrato", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABJY9942400", + "Key": "BusinessKABJY9942400", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Charles and Melissa Froland Faculty Fellow", "CURRENT HOLDER": "Jonathan Bendor", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQYC4071874", + "Key": "BusinessKAQYC4071874", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The General Atlantic Professorship in the Graduate School of Business", "CURRENT HOLDER": "Jennifer L. Aaker", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQXY9688338", + "Key": "BusinessKAQXY9688338", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The A. P. Giannini Professorship in Banking and Finance", "CURRENT HOLDER": "Jonathan B. Berk", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAADJ5991539", + "Key": "BusinessKAADJ5991539", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The John A. Gunn and Cynthia Fry Gunn Faculty Scholar", "CURRENT HOLDER": "Claudia Allende Santa Cruz", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARAM9942400", + "Key": "BusinessKARAM9942400", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Walter and Elise Haas Professorship in the Graduate School of Business", "CURRENT HOLDER": "Jonathan Bendor", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJHN0", + "Key": "BusinessKEJHN0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Miriam Harvey Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAEH9698912", + "Key": "BusinessKBAEH9698912", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Paul E. Holden Professorship in the Graduate School of Business", "CURRENT HOLDER": "Francis J. Flynn", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRACS4474573", + "Key": "BusinessKRACS4474573", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Charles A. Holloway Professorship", "CURRENT HOLDER": "Erica Plambeck", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAREZ9683018", + "Key": "BusinessKAREZ9683018", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Herbert Hoover Professorship in Public and Private Management", "CURRENT HOLDER": "Steven Callander", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARDS5160224", + "Key": "BusinessKARDS5160224", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Joan E. Horngren Professorship in Accounting", "CURRENT HOLDER": "Christopher Armstrong", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABFY9866575", + "Key": "BusinessKABFY9866575", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Investment Group of Santa Barbara Professorship in Entrepreneurship", "CURRENT HOLDER": "Stefanos Zenios", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAUYZ3521424", + "Key": "BusinessKAUYZ3521424", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Robert and Marilyn Jaedicke Faculty Fellow", "CURRENT HOLDER": "Peter DeMarzo", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAJAY9693145", + "Key": "BusinessKAJAY9693145", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Robert K. Jaedicke Professorship", "CURRENT HOLDER": "Joseph D. Piotroski", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAVC3964897", + "Key": "BusinessKBAVC3964897", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Robert A. and Elizabeth R. Jeffe Professorship", "CURRENT HOLDER": "Jesper B. Sørensen", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARHT5773382", + "Key": "BusinessKARHT5773382", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Fletcher Jones Faculty Scholar", "CURRENT HOLDER": "Ömer Karaduman", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARHT5960554", + "Key": "BusinessKARHT5960554", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Fletcher Jones Faculty Scholar", "CURRENT HOLDER": "Lihua Lei", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKJOSS7418726", + "Key": "BusinessKJOSS7418726", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Robert L. Joss Adjunct Professorship", "CURRENT HOLDER": "Joel Peterson", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARIN5205568", + "Key": "BusinessKARIN5205568", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Walter Kenneth Kilpatrick Professorship in the Graduate School of Business", "CURRENT HOLDER": "Brian Lowery", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVAU9894700", + "Key": "BusinessKAVAU9894700", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The William R. Kimball Professorship in the Graduate School of Business", "CURRENT HOLDER": "Jennifer Eberhardt", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABFE9977529", + "Key": "BusinessKABFE9977529", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Dorothy J. King Lectureship in Leadership", "CURRENT HOLDER": "Collins Dobbs", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZDV9674221", + "Key": "BusinessKAZDV9674221", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The King Philanthropies Professorship", "CURRENT HOLDER": "Jonathan Levav", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARJI9975848", + "Key": "BusinessKARJI9975848", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Kleiner Perkins Caufield & Byers Professorship in the Graduate School of Business", "CURRENT HOLDER": "Haim Mendelson", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVGM0", + "Key": "BusinessKAVGM0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Philip H. Knight Professorship for the Dean of the Graduate School of Business", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARLV9772229", + "Key": "BusinessKARLV9772229", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Theodore J. Kreps Professorship in the Graduate School of Business", "CURRENT HOLDER": "Andrzej Skrzypacz", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARLU0", + "Key": "BusinessKARLU0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Sebastian S. Kresge Professorship in Marketing", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRABW1844752", + "Key": "BusinessKRABW1844752", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Lacob Family Faculty Fellow", "CURRENT HOLDER": "George Foster", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVBN9693167", + "Key": "BusinessKAVBN9693167", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Laurence W. Lane Professorship in the Graduate School of Business", "CURRENT HOLDER": "Zakary Tormala", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABTR3905346", + "Key": "BusinessKABTR3905346", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Larsen Lam Family Lectureship", "CURRENT HOLDER": "Patricia Nakache", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKASXY9969320", + "Key": "BusinessKASXY9969320", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Edmund W. Littlefield Professorship in the Graduate School of Business", "CURRENT HOLDER": "Robert A. Burgelman", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJPA50025004", + "Key": "BusinessKEJPA50025004", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The David S. Lobel Professorship in Business and Sustainability", "CURRENT HOLDER": "Bård Harstad", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKLOBL5357617", + "Key": "BusinessKLOBL5357617", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The David S. Lobel Professorship in Private Equity", "CURRENT HOLDER": "Ilya A. Strebulaev", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVCM5042940", + "Key": "BusinessKAVCM5042940", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Jonathan B. Lovelace Professorship in the Graduate School of Business", "CURRENT HOLDER": "Ali Yurukoglu", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABNC0", + "Key": "BusinessKABNC0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Shan-Lyn Ma Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATAT0", + "Key": "BusinessKATAT0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Robert A. Magowan Professorship in Marketing", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZEJ5451234", + "Key": "BusinessKAZEJ5451234", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Philip F. Maritz Faculty Fellow", "CURRENT HOLDER": "Anne Beyer", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVDT1844752", + "Key": "BusinessKAVDT1844752", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Konosuke Matsushita Professorship in International Strategy and Management", "CURRENT HOLDER": "George Foster", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKASYK0", + "Key": "BusinessKASYK0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The MBA Class of 1963 Professorship in the Graduate School of Business", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQKC5482924", + "Key": "BusinessKAQKC5482924", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The MBA Class of 1969 Faculty Scholar", "CURRENT HOLDER": "Takuo Sugaya", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKASYZ6966816", + "Key": "BusinessKASYZ6966816", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The MBA Class of 1973 Lecturership", "CURRENT HOLDER": "Jim Ellis", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKASYW3063203", + "Key": "BusinessKASYW3063203", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The MBA Class of 1978 Lecturership", "CURRENT HOLDER": "David Dodson", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATBS7111065", + "Key": "BusinessKATBS7111065", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The MBA Class of 1980 Adjunct Professorship in Management", "CURRENT HOLDER": "H. Irving Grousbeck", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATAG9704693", + "Key": "BusinessKATAG9704693", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Atholl McBean Professorship in the Graduate School of Business", "CURRENT HOLDER": "Hayagreeva Rao", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATAI9750456", + "Key": "BusinessKATAI9750456", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Bowen H. and Janice Arthur McCoy Professorship in Leadership Values", "CURRENT HOLDER": "Benoît Monin", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATBJ5282082", + "Key": "BusinessKATBJ5282082", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The John G. McCoy-Banc One Corporation Professorship", "CURRENT HOLDER": "Wesley Hartmann", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRLAN3521424", + "Key": "BusinessKRLAN3521424", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The John G. McDonald Professorship", "CURRENT HOLDER": "Peter M. DeMarzo", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVEA9772203", + "Key": "BusinessKAVEA9772203", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Joseph McDonald Professorship in the Graduate School of Business", "CURRENT HOLDER": "Deborah H. Gruenfeld", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARTX9750456", + "Key": "BusinessKARTX9750456", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Hank McKinnell-Pfizer Inc. Faculty Fellow", "CURRENT HOLDER": "Benoît Monin", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATCA9969320", + "Key": "BusinessKATCA9969320", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The James and Doris McNamara Faculty Fellow", "CURRENT HOLDER": "Robert Burgelman", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARMR4598884", + "Key": "BusinessKARMR4598884", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Fred H. Merrill Professorship in the Graduate School of Business", "CURRENT HOLDER": "Michael Ostrovsky", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVEL9961475", + "Key": "BusinessKAVEL9961475", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The C. O. G. Miller Distinguished Professorship in Finance", "CURRENT HOLDER": "Paul C. Pfleiderer", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRAAX4904611", + "Key": "BusinessKRAAX4904611", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The James Irvin Miller Professorship in Finance", "CURRENT HOLDER": "Zhiguo He", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABUU4889770", + "Key": "BusinessKABUU4889770", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Amman Mineral Professorship", "CURRENT HOLDER": "Gabriel Weintraub", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARGF4541678", + "Key": "BusinessKARGF4541678", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Mizuho Financial Group Professorship in the Graduate School of Business", "CURRENT HOLDER": "Hanno Lustig", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAARL50014898", + "Key": "BusinessKAARL50014898", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Moghadam Family Professorship", "CURRENT HOLDER": "Matteo Maggiori", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAFT9688333", + "Key": "BusinessKBAFT9688333", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Morgridge Professorship in the Graduate School of Business", "CURRENT HOLDER": "Sarah A. Soule", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABHV5592015", + "Key": "BusinessKABHV5592015", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Kevin J. O’Donohue Family Faculty Scholar", "CURRENT HOLDER": "Mohammad Akbarpour", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRACL9668441", + "Key": "BusinessKRACL9668441", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Ormond Family Professorship in Finance", "CURRENT HOLDER": "Joshua D. Rauh", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAZDW6000285", + "Key": "BusinessKAZDW6000285", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The John S. Osterweis Professorship", "CURRENT HOLDER": "Arvind Krishnamurthy", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRLAZ9971755", + "Key": "BusinessKRLAZ9971755", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The George G. C. Parker Professorship", "CURRENT HOLDER": "Anat R. Admati", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARVW4813390", + "Key": "BusinessKARVW4813390", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Jack Steele Parker Professorship in the Graduate School of Business", "CURRENT HOLDER": "Yuliy Sannikov", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAGC9824699", + "Key": "BusinessKBAGC9824699", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Gregor G. Peterson Professorship in the Graduate School of Business", "CURRENT HOLDER": "Lanier Benkard", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABTN6986277", + "Key": "BusinessKABTN6986277", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Raccoon Partners Lectureship in Strategic Management", "CURRENT HOLDER": "Matt Glickman", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRACQ5240506", + "Key": "BusinessKRACQ5240506", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Louise and Claude N. Rosenberg, Jr., Directorship of the Center for Social Innovation in the Graduate School of Business", "CURRENT HOLDER": "Neil Malhotra", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQPT5609443", + "Key": "BusinessKAQPT5609443", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Louise and Claude N. Rosenberg, Jr., Faculty Scholar", "CURRENT HOLDER": "Shoshana Vasserman", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAQOV5421352", + "Key": "BusinessKAQOV5421352", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Edward B. Rust Professorship in the Graduate School of Business", "CURRENT HOLDER": "Juan Carlos Suárez Serrato", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAXNZ9705255", + "Key": "BusinessKAXNZ9705255", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Sanwa Bank, Limited, Professorship in the Graduate School of Business", "CURRENT HOLDER": "Baba Shiv", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVIJ50017007", + "Key": "BusinessKAVIJ50017007", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The John H. Scully Professorship in International Business Studies", "CURRENT HOLDER": "Michele Gelfand", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABDC9621606", + "Key": "BusinessKABDC9621606", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Shanahan Family Faculty Scholar", "CURRENT HOLDER": "Jon Atwell", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABDA5595642", + "Key": "BusinessKABDA5595642", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The R. Michael Shanahan Faculty Scholar", "CURRENT HOLDER": "Kuang Xu", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABDB9772229", + "Key": "BusinessKABDB9772229", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The R. Michael and Mary Shanahan Faculty Fellow", "CURRENT HOLDER": "Andy Skrzypacz", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARQU9916636", + "Key": "BusinessKARQU9916636", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The William F. Sharpe Professorship in Financial Economics", "CURRENT HOLDER": "Steven R. Grenadier", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAHG3698206", + "Key": "BusinessKBAHG3698206", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Thomas M. Siebel Professorship in Business Leadership", "CURRENT HOLDER": "William P. Barnett", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBARR9680289", + "Key": "BusinessKBARR9680289", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Jagdeep and Roshni Singh Professorship in the Graduate School of Business", "CURRENT HOLDER": "Nir Halevy", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKASBA9753906", + "Key": "BusinessKASBA9753906", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Jeffrey S. Skoll Professorship in the Graduate School of Business", "CURRENT HOLDER": "Lawrence M. Wein", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARZY5359958", + "Key": "BusinessKARZY5359958", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Spence Faculty Fellow", "CURRENT HOLDER": "Andy Hall", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAACL5945707", + "Key": "BusinessKAACL5945707", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Spence Faculty Scholar", "CURRENT HOLDER": "John Kepler", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJET4474573", + "Key": "BusinessKEJET4474573", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Srivani Faculty Fellow", "CURRENT HOLDER": "Erica Plambeck", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKEJEU5184120", + "Key": "BusinessKEJEU5184120", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Srivani Faculty Scholar", "CURRENT HOLDER": "Dan Iancu", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABIR5451234", + "Key": "BusinessKABIR5451234", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Staehelin Family Professorship", "CURRENT HOLDER": "Anne Beyer", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKARZV9906850", + "Key": "BusinessKARZV9906850", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The STANCO 25 Professorship in the Graduate School of Business", "CURRENT HOLDER": "Charles I. Jones", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAHB9965435", + "Key": "BusinessKBAHB9965435", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Richard A. Stepp Professorship in the Graduate School of Business", "CURRENT HOLDER": "Jeremy I. Bulow", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKBAGX9751421", + "Key": "BusinessKBAGX9751421", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The StrataCom Professorship in Management", "CURRENT HOLDER": "S. Christian Wheeler", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKASCV4822680", + "Key": "BusinessKASCV4822680", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Carl and Marilynn Thoma Professorship in the Graduate School of Business", "CURRENT HOLDER": "Mohsen Bayati", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAVKP5161603", + "Key": "BusinessKAVKP5161603", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The William R. Timken Professorship in the Graduate School of Business", "CURRENT HOLDER": "Vikrant Vig", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKABLV9771619", + "Key": "BusinessKABLV9771619", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Mary and Rankine Van Anda Entrepreneurial Professorship in the Graduate School of Business", "CURRENT HOLDER": "Paul E. Oyer", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKAALC9924523", + "Key": "BusinessKAALC9924523", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The James C. Van Horne Professorship", "CURRENT HOLDER": "Jeffrey H. Zwiebel", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessNAARF9876798", + "Key": "BusinessNAARF9876798", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Paul L. and Phyllis Wattis Professorship in the Graduate School of Business", "CURRENT HOLDER": "Ron Kasznik", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRLBA5360265", + "Key": "BusinessKRLBA5360265", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Winnick Family Faculty Scholar", "CURRENT HOLDER": "Greg Buchak", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKATPH0", + "Key": "BusinessKATPH0", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Dean Witter Distinguished Professorship in Finance", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "BusinessKRLAO9669476", + "Key": "BusinessKRLAO9669476", "SUBCATEGORY": "GRADUATE SCHOOL OF BUSINESS", "POSITION": "The Younger Family Faculty Scholar", "CURRENT HOLDER": "Navdeep Sahni", "WEBSITE": "http://www.gsb.stanford.edu/faculty-research/faculty" }, { - "KEY": "EducationKMMKJ9697023", + "Key": "EducationKMMKJ9697023", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Barnett Family Professorship", "CURRENT HOLDER": "Thomas S. Dee", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMLD5570733", + "Key": "EducationKMMLD5570733", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Conley DeAngelis Family Professorship", "CURRENT HOLDER": "Eric Bettinger", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKBADQ5517415", + "Key": "EducationKBADQ5517415", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Charles E. Ducommun Professorship", "CURRENT HOLDER": "Hilda Borko", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMLR38236394", + "Key": "EducationKMMLR38236394", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "Excellence in Learning Graduate School of Education Professorship", "CURRENT HOLDER": "Philip Andrew Fisher", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMLU9769449", + "Key": "EducationKMMLU9769449", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Halper Family Faculty Director of the Stanford Accelerator for Learning", "CURRENT HOLDER": "Daniel L. Schwartz", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAAUI9786179", + "Key": "EducationKAAUI9786179", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Jacks Family Professorship", "CURRENT HOLDER": "Walter W. Powell", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAUYS9827064", + "Key": "EducationKAUYS9827064", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The David Jacks Professorship of Education", "CURRENT HOLDER": "Roy Pea", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAUYT35820075", + "Key": "EducationKAUYT35820075", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Lee L. Jacks Professorship of Education", "CURRENT HOLDER": "Alfredo J. Artiles", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAUYU9872839", + "Key": "EducationKAUYU9872839", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Margaret Jacks Professorship of Education", "CURRENT HOLDER": "Brigid Barron", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAREU1453745", + "Key": "EducationKAREU1453745", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Vida Jacks Professorship of Education", "CURRENT HOLDER": "Francisco O. Ramirez", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMKF5792656", + "Key": "EducationKMMKF5792656", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Jim Joseph Professorship in Education and Jewish Studies", "CURRENT HOLDER": "Ari Kelman", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAATR5308076", + "Key": "EducationKAATR5308076", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Kamalachari Professorship in Science Education", "CURRENT HOLDER": "Bryan Brown", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAATZ0", + "Key": "EducationKAATZ0", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Khosla Family Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMKL50009688", + "Key": "EducationKMMKL50009688", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Judy Koch Professorship", "CURRENT HOLDER": "Rebecca Silverman", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMLM7824006", + "Key": "EducationKMMLM7824006", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Lemann Foundation Professorship", "CURRENT HOLDER": "Martin Carnoy", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKASAP4123451", + "Key": "EducationKASAP4123451", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The James G. March Professorship of Organizational Studies in Education and Business", "CURRENT HOLDER": "Geoffrey Cohen", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMKR9769449", + "Key": "EducationKMMKR9769449", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Nomellini & Olivier Professorship of Educational Technology", "CURRENT HOLDER": "Daniel L. Schwartz", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAAQW9821596", + "Key": "EducationKAAQW9821596", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Nomellini & Olivier Professorship in the Graduate School of Education", "CURRENT HOLDER": "Jo Boaler", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKAAPS5998005", + "Key": "EducationKAAPS5998005", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Pigott Family Graduate School of Education Professorship", "CURRENT HOLDER": "Bruce McCandliss", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKMMKP5358050", + "Key": "EducationKMMKP5358050", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Professorship in Poverty and Inequality in Education", "CURRENT HOLDER": "Sean F. Reardon", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKARWR9769449", + "Key": "EducationKARWR9769449", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The I. James Quillen Endowed Deanship of the Stanford University Graduate School of Education", "CURRENT HOLDER": "Daniel L. Schwartz", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EducationKBAHI9692656", + "Key": "EducationKBAHI9692656", "SUBCATEGORY": "GRADUATE SCHOOL OF EDUCATION", "POSITION": "The Bonnie Katz Tenenbaum Professorship in Education", "CURRENT HOLDER": "Anne Harper Charity Hudley", "WEBSITE": "http://ed.stanford.edu/faculty/profiles" }, { - "KEY": "EngineeringKAQMB5340473", + "Key": "EngineeringKAQMB5340473", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The 3Com Corporation Faculty Development Scholar", "CURRENT HOLDER": "Jonathan Fan", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAUNT9823444", + "Key": "EngineeringKAUNT9823444", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Rodney H. Adams Professorship in the School of Engineering", "CURRENT HOLDER": "Pamela Hinds", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKASYG5308005", + "Key": "EngineeringKASYG5308005", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Alcatel-Lucent Professorship in Communications and Networking", "CURRENT HOLDER": "Alexander Aiken", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQCG5539404", + "Key": "EngineeringKAQCG5539404", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Reid and Polly Anderson Faculty Fellow", "CURRENT HOLDER": "Vivian Feig", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQCG5593994", + "Key": "EngineeringKAQCG5593994", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Reid and Polly Anderson Faculty Fellow", "CURRENT HOLDER": "Rogelio A. Hernández-López", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQAS2523991", + "Key": "EngineeringKAQAS2523991", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Stanford W. Ascherman, MD Professorship in the School of Engineering", "CURRENT HOLDER": "Kathleen M. Eisenhardt", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQBD4506838", + "Key": "EngineeringKAQBD4506838", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The William E. Ayer Professorship in Electrical Engineering", "CURRENT HOLDER": "Subhasish Mitra", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKK3981826", + "Key": "EngineeringKWMKK3981826", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Forest Baskett Professorship", "CURRENT HOLDER": "Maneesh Agrawala", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENUA50011895", + "Key": "EngineeringKENUA50011895", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Willard R. and Inez Kerr Bell Faculty Scholar", "CURRENT HOLDER": "Srabanti Chowdhury", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAUPW5356664", + "Key": "EngineeringKAUPW5356664", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Willard R. and Inez Kerr Bell Professorship in the School of Engineering", "CURRENT HOLDER": "H.-S. Philip Wong", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMME0", + "Key": "EngineeringKWMME0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The John Blume Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQDN9875139", + "Key": "EngineeringKAQDN9875139", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The John A. Blume Professorship in the School of Engineering", "CURRENT HOLDER": "Gregory G. Deierlein", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQGK9687081", + "Key": "EngineeringKAQGK9687081", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Leonard Bosack and Sandy K. Lerner Professorship in Engineering", "CURRENT HOLDER": "John Ousterhout", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENRU5492540", + "Key": "EngineeringKENRU5492540", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert Bosch Chairmanship of the Department of Mechanical Engineering", "CURRENT HOLDER": "Ellen Kuhl", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQGI6001537", + "Key": "EngineeringKAQGI6001537", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert Bosch Faculty Development Scholar", "CURRENT HOLDER": "Keith Winstein", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAUQK9901000", + "Key": "EngineeringKAUQK9901000", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Ruth G. and William K. Bowes Professorship in the School of Engineering", "CURRENT HOLDER": "Reinhold H. Dauskardt", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBADB5071692", + "Key": "EngineeringKBADB5071692", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Thomas H. and Polly W. Bredt Faculty Development Scholar", "CURRENT HOLDER": "John Duchi", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQNJ9921370", + "Key": "EngineeringKAQNJ9921370", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Cadence Design Systems Professorship", "CURRENT HOLDER": "Oyekunle A. Olukotun", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAUQU2758902", + "Key": "EngineeringKAUQU2758902", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The William Alden Campbell and Martha Campbell Professorship in the School of Engineering", "CURRENT HOLDER": "Jeffrey R. Koseff", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAUQV9771056", + "Key": "EngineeringKAUQV9771056", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Canon Professorship in the School of Engineering", "CURRENT HOLDER": "Ronald Fedkiw", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSZ3221678", + "Key": "EngineeringKENSZ3221678", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Lester Levi Carter Professorship", "CURRENT HOLDER": "Eric Stefan G. Shaqfeh", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKO50004632", + "Key": "EngineeringKWMKO50004632", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Cheriton Family Faculty Scholar", "CURRENT HOLDER": "Emma Brunskill", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKO4643607", + "Key": "EngineeringKWMKO4643607", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Cheriton Family Professorship", "CURRENT HOLDER": "Ron Dror", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKO9920372", + "Key": "EngineeringKWMKO9920372", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Cheriton Family Professorship", "CURRENT HOLDER": "Mendel Rosenblum", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQHM3824760", + "Key": "EngineeringKAQHM3824760", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James and Ellenor Chesebrough Professorship", "CURRENT HOLDER": "Mehran Sahami", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMAG22949267", + "Key": "EngineeringKWMAG22949267", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Sunlin & Priscilla Chou Faculty Scholar", "CURRENT HOLDER": "Emma Lundberg", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQIR5129252", + "Key": "EngineeringKAQIR5129252", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Cisco Systems Faculty Development Scholar", "CURRENT HOLDER": "Johan Ugander", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBADH3573706", + "Key": "EngineeringKBADH3573706", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James H. Clark Professorship in the School of Engineering", "CURRENT HOLDER": "Scott L. Delp", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBADH9822032", + "Key": "EngineeringKBADH9822032", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James H. Clark Professorship in the School of Engineering", "CURRENT HOLDER": "James R. Swartz", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENRP4402830", + "Key": "EngineeringKENRP4402830", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Vance D. and Arlene C. Coffman Faculty Scholar", "CURRENT HOLDER": "Mac Schwager", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKKHME9859364", + "Key": "EngineeringKKHME9859364", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Vance D. and Arlene C. Coffman Professorship", "CURRENT HOLDER": "Juan J. Alonso", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAURP2657948", + "Key": "EngineeringKAURP2657948", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Mary and Gordon Crary Professorship in the School of Engineering", "CURRENT HOLDER": "John C. Mitchell", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMLT9852278", + "Key": "EngineeringKWMLT9852278", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Cryptography Professorship", "CURRENT HOLDER": "Dan Boneh", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQNB3537677", + "Key": "EngineeringKAQNB3537677", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Reid Weaver Dennis Professorship", "CURRENT HOLDER": "John M. Pauly", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQQH9901422", + "Key": "EngineeringKAQQH9901422", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Leland T. Edwards Professorship in the School of Engineering", "CURRENT HOLDER": "Shan X. Wang", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBADT99987752", + "Key": "EngineeringKBADT99987752", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Entrepreneurship Professorship in the School of Engineering", "CURRENT HOLDER": "Thomas H. Byers", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAQUV5588064", + "Key": "EngineeringKAQUV5588064", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The David Filo and Jerry Yang Faculty Scholar", "CURRENT HOLDER": "Mary Wootters", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringNSYDG1427053", + "Key": "EngineeringNSYDG1427053", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The John M. Fluke Professorship in Electrical Engineering", "CURRENT HOLDER": "James D. Plummer", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKFONG3373479", + "Key": "EngineeringKFONG3373479", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Kenneth Fong Professorship", "CURRENT HOLDER": "Russ B. Altman", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAUVE2984763", + "Key": "EngineeringKAUVE2984763", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Thomas W. Ford Professorship in the School of Engineering", "CURRENT HOLDER": "Peter W. Glynn", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKI3081684", + "Key": "EngineeringKWMKI3081684", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Fortinet Founders Chair of the Department of Electrical Engineering", "CURRENT HOLDER": "Mark Horowitz", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKX9823444", + "Key": "EngineeringKWMKX9823444", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Fortinet Founders Chair of the Department of Management Science and Engineering", "CURRENT HOLDER": "Pamela J. Hinds", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMMR5404686", + "Key": "EngineeringKWMMR5404686", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Fortinet Founders Professorship", "CURRENT HOLDER": "Yi Cui", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENTY3110558", + "Key": "EngineeringKENTY3110558", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Coleman F. Fung Professorship in the School of Engineering", "CURRENT HOLDER": "Margaret L. Brandeau", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKN99998940", + "Key": "EngineeringKWMKN99998940", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James F. and Mary Lynn Gibbons Professorship", "CURRENT HOLDER": "John L. Hennessy", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMMO9761883", + "Key": "EngineeringKWMMO9761883", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Joseph and Hon Mai Goodman Professorship", "CURRENT HOLDER": "Shanhui Fan", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARAV3683018", + "Key": "EngineeringKARAV3683018", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert L. and Audrey S. Hancock Professorship in the School of Engineering", "CURRENT HOLDER": "Olav Solgaard", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARSA9752841", + "Key": "EngineeringKARSA9752841", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Stephen Harris Professorship", "CURRENT HOLDER": "Mark Brongersma", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARCE0", + "Key": "EngineeringKARCE0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Hitachi America Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARCE2436046", + "Key": "EngineeringKARCE2436046", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Hitachi America Professorship in the School of Engineering", "CURRENT HOLDER": "Abbas El Gamal", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSA5356590", + "Key": "EngineeringKENSA5356590", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Vivian Church Hoff Professorship in Aircraft Structures", "CURRENT HOLDER": "Charbel Farhat", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARCF0", + "Key": "EngineeringKARCF0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The William George Hoover Faculty Fellow in Electrical Engineering", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMAH9843509", + "Key": "EngineeringKWMAH9843509", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The ICME Directorship", "CURRENT HOLDER": "Gianluca Iaccarino", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARHX2438471", + "Key": "EngineeringKARHX2438471", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Franklin P. and Caroline M. Johnson Professorship in the School of Engineering", "CURRENT HOLDER": "Parviz Moin", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringNAAQW9903006", + "Key": "EngineeringNAAQW9903006", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Fletcher Jones Professorship in Computer Science", "CURRENT HOLDER": "Jennifer Widom", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENTZ9967530", + "Key": "EngineeringKENTZ9967530", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Fletcher Jones Professorship in the School of Engineering", "CURRENT HOLDER": "Mark R. Cutkosky", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringNAAVV9945593", + "Key": "EngineeringNAAVV9945593", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Fletcher Jones Professorship in the School of Engineering", "CURRENT HOLDER": "Gerald G. Fuller", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBAWT5278414", + "Key": "EngineeringKBAWT5278414", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Thomas V. Jones Faculty Development Scholar", "CURRENT HOLDER": "Sean Follmer", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringNAABA2514933", + "Key": "EngineeringNAABA2514933", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Thomas V. Jones Professorship in the School of Engineering", "CURRENT HOLDER": "Ilan Kroo", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKY5775383", + "Key": "EngineeringKWMKY5775383", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Thomas Kailath and Guanghan Xu Professorship in Engineering", "CURRENT HOLDER": "David Tse", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSI5927658", + "Key": "EngineeringKENSI5927658", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The W. M. Keck Faculty Scholar", "CURRENT HOLDER": "Simone D’Amico", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSI9660361", + "Key": "EngineeringKENSI9660361", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The W. M. Keck Faculty Scholar", "CURRENT HOLDER": "Juan Rivas-Davila", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSJ5249606", + "Key": "EngineeringKENSJ5249606", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The W. M. Keck Foundation Faculty Scholar", "CURRENT HOLDER": "Kayvon Fatahalian", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSJ5435690", + "Key": "EngineeringKENSJ5435690", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The W. M. Keck Foundation Faculty Scholar", "CURRENT HOLDER": "Lei Stanley Qi", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAVAP9866443", + "Key": "EngineeringKAVAP9866443", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The W. M. Keck Foundation Professorship in Electrical Engineering", "CURRENT HOLDER": "David A. B. Miller", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARKU5221995", + "Key": "EngineeringKARKU5221995", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The W. M. Keck Professorship", "CURRENT HOLDER": "Riitta Katila", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBAEZ9967472", + "Key": "EngineeringKBAEZ9967472", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Kleiner Perkins, Mayfield, Sequoia Capital Professorship in the School of Engineering", "CURRENT HOLDER": "Monica Lam", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBAEV5453816", + "Key": "EngineeringKBAEV5453816", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert and Barbara Kleist Professorship in the School of Engineering", "CURRENT HOLDER": "Andrea Montanari", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKMMLA4379400", + "Key": "EngineeringKMMLA4379400", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Donald E. Knuth Professorship", "CURRENT HOLDER": "Moses Charikar", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARLD3673258", + "Key": "EngineeringKARLD3673258", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Kumagai Professorship in the School of Engineering", "CURRENT HOLDER": "Martin Fischer", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKLEEK5353938", + "Key": "EngineeringKLEEK5353938", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The K. K. Lee Professorship", "CURRENT HOLDER": "Zhenan Bao", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKASGK3346111", + "Key": "EngineeringKASGK3346111", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Kwoh-Ting Li Professorship in the School of Engineering", "CURRENT HOLDER": "Yinyu Ye", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKDNDG5423201", + "Key": "EngineeringKDNDG5423201", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Hong Seh and Vivian W. M. Lim Professorship", "CURRENT HOLDER": "Alberto Salleo", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSB9709509", + "Key": "EngineeringKENSB9709509", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Addie and Al Macovski Professorship", "CURRENT HOLDER": "Jennifer Cochran", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKATCE1845841", + "Key": "EngineeringKATCE1845841", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Burt and Deedee McMurtry Professorship in the School of Engineering", "CURRENT HOLDER": "Elisabeth Paté-Cornell", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMLW5533869", + "Key": "EngineeringKWMLW5533869", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Mindtree Faculty Scholar", "CURRENT HOLDER": "Stefano Ermon", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARPL50019999", + "Key": "EngineeringKARPL50019999", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The David T. Morgenthaler II Faculty Scholar", "CURRENT HOLDER": "Manan Arya", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARPL5874021", + "Key": "EngineeringKARPL5874021", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The David T. Morgenthaler II Faculty Scholar", "CURRENT HOLDER": "Diyi Yang", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENZZ6029854", + "Key": "EngineeringKENZZ6029854", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Rajeev Motwani Professorship in Computer Science", "CURRENT HOLDER": "Omer Reingold", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRT50020001", + "Key": "EngineeringKARRT50020001", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert N. Noyce Faculty Fellow", "CURRENT HOLDER": "Maria Sakovsky", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRT0", + "Key": "EngineeringKARRT0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert N. Noyce Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRT0", + "Key": "EngineeringKARRT0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert N. Noyce Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRT5724704", + "Key": "EngineeringKARRT5724704", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert N. Noyce Faculty Fellow", "CURRENT HOLDER": "Ellen Vitercik", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRU5934313", + "Key": "EngineeringKARRU5934313", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert N. Noyce Family Faculty Fellow", "CURRENT HOLDER": "Iro Armeni", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRU5663773", + "Key": "EngineeringKARRU5663773", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Robert N. Noyce Family Faculty Fellow", "CURRENT HOLDER": "Jennifer Brophy", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAVFI9942202", + "Key": "EngineeringKAVFI9942202", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Obayashi Professorship in the School of Engineering", "CURRENT HOLDER": "Stephen G. Monismith", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKOSHM5700841", + "Key": "EngineeringKOSHM5700841", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Kenneth and Barbara Oshman Faculty Scholar", "CURRENT HOLDER": "Catherine Gorle", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRY5541097", + "Key": "EngineeringKARRY5541097", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Lee Otterson Faculty Scholar", "CURRENT HOLDER": "Eric Appel", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRY0", + "Key": "EngineeringKARRY0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Lee Otterson Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRY0", + "Key": "EngineeringKARRY0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Lee Otterson Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARRY3740545", + "Key": "EngineeringKARRY3740545", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Lee Otterson Professorship in the School of Engineering", "CURRENT HOLDER": "Stephen Quake", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAVFP6018347", + "Key": "EngineeringKAVFP6018347", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Silas H. Palmer Faculty Scholar", "CURRENT HOLDER": "Matteo Cargnello", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAVFO9779968", + "Key": "EngineeringKAVFO9779968", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Silas H. Palmer Professorship in Civil Engineering", "CURRENT HOLDER": "Richard G. Luthy", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMMQ4745436", + "Key": "EngineeringKWMMQ4745436", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Pease-Ye Professorship", "CURRENT HOLDER": "Eric Pop", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAVFZ1948918", + "Key": "EngineeringKAVFZ1948918", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The C. L. Peck, Class of 1906, Professorship", "CURRENT HOLDER": "Anne Kiremidjian", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARWT9973595", + "Key": "EngineeringKARWT9973595", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Charles M. Pigott Professorship in the School of Engineering", "CURRENT HOLDER": "Robert Sinclair", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENTB4652079", + "Key": "EngineeringKENTB4652079", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Paul Pigott Faculty Scholar", "CURRENT HOLDER": "Melissa Valentine", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARWU1858620", + "Key": "EngineeringKARWU1858620", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Paul Pigott Professorship in Engineering", "CURRENT HOLDER": "Leonidas J. Guibas", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENSH5431517", + "Key": "EngineeringKENSH5431517", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Charles Lee Powell Foundation Faculty Scholar", "CURRENT HOLDER": "Gordon Wetzstein", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARVZ9824822", + "Key": "EngineeringKARVZ9824822", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Charles Lee Powell Foundation Professorship", "CURRENT HOLDER": "Juan G. Santiago", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKJ5998008", + "Key": "EngineeringKWMKJ5998008", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Anand Rajaraman and Venky Harinarayan Professorship", "CURRENT HOLDER": "James Landay", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBASA9920471", + "Key": "EngineeringKBASA9920471", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Wells H. Rauser and Harold M. Petiprin Professorship", "CURRENT HOLDER": "Chaitan S. Khosla", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKMMKY9859844", + "Key": "EngineeringKMMKY9859844", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Rick and Melinda Reed Professorship", "CURRENT HOLDER": "Paul C. McIntyre", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKKHMA5492540", + "Key": "EngineeringKKHMA5492540", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Walter B. Reinhold Professorship in the School of Engineering", "CURRENT HOLDER": "Ellen Kuhl", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBASB1627256", + "Key": "EngineeringKBASB1627256", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Rickey/Nielsen Professorship in the School of Engineering", "CURRENT HOLDER": "Krishna Saraswat", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKAVHS9975079", + "Key": "EngineeringKAVHS9975079", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Samsung Professorship in the School of Engineering", "CURRENT HOLDER": "Stephen P. Boyd", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKMMKU5507890", + "Key": "EngineeringKMMKU5507890", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Shriram Chair of the Department of Bioengineering", "CURRENT HOLDER": "Markus Covert", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMLD3958824", + "Key": "EngineeringKWMLD3958824", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Thomas M. Siebel Professorship in Machine Learning", "CURRENT HOLDER": "Christopher Manning", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING9602638", + "Key": "EngineeringKSING9602638", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Faculty Fellow", "CURRENT HOLDER": "Matthias Garten", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING5723882", + "Key": "EngineeringKSING5723882", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Faculty Fellow", "CURRENT HOLDER": "Arvind Karunakaran", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING6112816", + "Key": "EngineeringKSING6112816", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Faculty Fellow", "CURRENT HOLDER": "Khalid Osman", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING50005919", + "Key": "EngineeringKSING50005919", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Faculty Fellow", "CURRENT HOLDER": "Barbara Simpson", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING0", + "Key": "EngineeringKSING0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING5595804", + "Key": "EngineeringKSING5595804", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Faculty Fellow", "CURRENT HOLDER": "Madeleine Udell", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKSING3750288", + "Key": "EngineeringKSING3750288", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Jagdeep and Roshni Singh Professorship in the School of Engineering", "CURRENT HOLDER": "Stacey F. Bent", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKARXK0", + "Key": "EngineeringKARXK0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Sony Faculty Development Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKDNDV9859364", + "Key": "EngineeringKDNDV9859364", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James and Anna Marie Spilker Chair of the Department of Aeronautics and Astronautics", "CURRENT HOLDER": "Juan Alonso", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKDNDY9688389", + "Key": "EngineeringKDNDY9688389", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James and Anna Marie Spilker Faculty Fellow", "CURRENT HOLDER": "Beverley McKeon", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKDNDY5377127", + "Key": "EngineeringKDNDY5377127", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James and Anna Marie Spilker Faculty Fellow", "CURRENT HOLDER": "Vasilis Syrgkanis", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKDNDY9717950", + "Key": "EngineeringKDNDY9717950", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The James and Anna Marie Spilker Professorship", "CURRENT HOLDER": "Persis S. Drell", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKASDJ0", + "Key": "EngineeringKASDJ0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The STMicroelectronics Faculty Development Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKASDJ0", + "Key": "EngineeringKASDJ0", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The STMicroelectronics Faculty Development Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMAJ9700593", + "Key": "EngineeringKWMAJ9700593", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Tang Family Foundation Chair of Chemical Engineering", "CURRENT HOLDER": "Andrew Spakowitz", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMKD3824760", + "Key": "EngineeringKWMKD3824760", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Tencent Chair of the Computer Science Department", "CURRENT HOLDER": "Mehran Sahami", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBAHJ9903006", + "Key": "EngineeringKBAHJ9903006", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Frederick Emmons Terman Dean of the School of Engineering", "CURRENT HOLDER": "Jennifer Widom", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKKHMD9822156", + "Key": "EngineeringKKHMD9822156", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The VMware Founders Professorship in Computer Science", "CURRENT HOLDER": "Balaji Prabhakar", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMLX9941980", + "Key": "EngineeringKWMLX9941980", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Weichai Professorship", "CURRENT HOLDER": "Oussama Khatib", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENRV9870122", + "Key": "EngineeringKENRV9870122", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Richard W. Weiland Professorship in the School of Engineering", "CURRENT HOLDER": "Nicholas Bambos", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENRV9900531", + "Key": "EngineeringKENRV9900531", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Richard W. Weiland Professorship in the School of Engineering", "CURRENT HOLDER": "Thomas W. Kenny", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKENRV4286985", + "Key": "EngineeringKENRV4286985", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Richard W. Weiland Professorship in the School of Engineering", "CURRENT HOLDER": "Allison M. Okamura", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKATLR9970427", + "Key": "EngineeringKATLR9970427", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Edward C. Wells Professorship in the School of Engineering", "CURRENT HOLDER": "Sanjiva Lele", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKATMV2521649", + "Key": "EngineeringKATMV2521649", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Donald W. Whittier Professorship in Mechanical Engineering", "CURRENT HOLDER": "David M. Kelley", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKATNM1357094", + "Key": "EngineeringKATNM1357094", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Clarence J. and Patricia R. Woodard Professorship in Mechanical Engineering", "CURRENT HOLDER": "Ronald K. Hanson", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKBARL3081684", + "Key": "EngineeringKBARL3081684", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Yahoo! Founders Professorship in the School of Engineering", "CURRENT HOLDER": "Mark A. Horowitz", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "EngineeringKWMLP50016954", + "Key": "EngineeringKWMLP50016954", "SUBCATEGORY": "SCHOOL OF ENGINEERING", "POSITION": "The Yu Family Faculty Scholar", "CURRENT HOLDER": "Todd Coleman", "WEBSITE": "https://engineering.stanford.edu/people/faculty/grid" }, { - "KEY": "H&SKAUNJ9596945", + "Key": "H&SKAUNJ9596945", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Billie Bennett Achilles Directorship of Keyboard Programs", "CURRENT HOLDER": "Elizabeth Schumann", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUNK50007306", + "Key": "H&SKAUNK50007306", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Billie Bennett Achilles Directorship of Vocal Studies", "CURRENT HOLDER": "Kathryne Jennings", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBACS9842824", + "Key": "H&SKBACS9842824", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Paul S. and Billie Achilles Professorship in Environmental Biology", "CURRENT HOLDER": "Elizabeth A. Hadly", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAADN0", + "Key": "H&SKAADN0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Lysbeth Warren Anderson Professorship in Islamic Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAEO9783879", + "Key": "H&SKAAEO9783879", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Roy and Betty Anderson Professorship", "CURRENT HOLDER": "Ilya R. Segal", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBACU9970997", + "Key": "H&SKBACU9970997", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Vernon R. and Lysbeth Warren Anderson Deanship of the School of Humanities and Sciences", "CURRENT HOLDER": "Debra M. Satz", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTBF7769326", + "Key": "H&SKJTBF7769326", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marc and Laura Andreessen Faculty Directorship Fund for the Stanford Center on Philanthropy and Civil Society", "CURRENT HOLDER": "Paul Brest", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTBF9786179", + "Key": "H&SKJTBF9786179", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marc and Laura Andreessen Faculty Directorship Fund for the Stanford Center on Philanthropy and Civil Society", "CURRENT HOLDER": "Walter W. Powell", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTBF4298568", + "Key": "H&SKJTBF4298568", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marc and Laura Andreessen Faculty Directorship Fund for the Stanford Center on Philanthropy and Civil Society", "CURRENT HOLDER": "Rob Reich", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQAM5483723", + "Key": "H&SKAQAM5483723", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Annenberg Faculty Fellow", "CURRENT HOLDER": "Kathryn M. Olivarius", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQAM0", + "Key": "H&SKAQAM0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Annenberg Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQAM0", + "Key": "H&SKAQAM0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Annenberg Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQAM0", + "Key": "H&SKAQAM0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Annenberg Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQAM0", + "Key": "H&SKAQAM0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Annenberg Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAQG5850707", + "Key": "H&SKAAQG5850707", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Stanford W. Ascherman, MD Professorship", "CURRENT HOLDER": "Ronald Egan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBACX5289313", + "Key": "H&SKBACX5289313", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Joseph S. Atha Professorship in Humanities", "CURRENT HOLDER": "Shelley Fisher Fishkin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAALZ9897083", + "Key": "H&SNAALZ9897083", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Avalon Foundation Professorship in Humanities", "CURRENT HOLDER": "Stephen Hinton", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAQL9974338", + "Key": "H&SNAAQL9974338", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Margery Bailey Professorship in English and Dramatic Literature", "CURRENT HOLDER": "Patricia Parker", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCLC0", + "Key": "H&SKBCLC0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Felix and Heather Baker Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAER5453816", + "Key": "H&SKAAER5453816", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John D. and Sigrid Banks Professorship", "CURRENT HOLDER": "Andrea Montanari", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBLBS4363792", + "Key": "H&SKBLBS4363792", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Barnum-Simons Chair in Math and Statistics", "CURRENT HOLDER": "Emmanuel J. Candès", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUPR6000140", + "Key": "H&SKAUPR6000140", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anne T. and Robert M. Bass Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Carolyn R. Bertozzi", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUPS99994717", + "Key": "H&SKAUPS99994717", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anne T. and Robert M. Bass Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "David Donoho", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUPP5452863", + "Key": "H&SKAUPP5452863", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anne T. and Robert M. Bass Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Kannan Soundararajan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUPO7356413", + "Key": "H&SKAUPO7356413", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anne T. and Robert M. Bass Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Richard G. Klein", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUPQ9941899", + "Key": "H&SKAUPQ9941899", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anne T. and Robert M. Bass Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Robert B. Laughlin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAEU9867904", + "Key": "H&SKAAEU9867904", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Danily C. and Laura Louise Bell Professorship in the Humanities", "CURRENT HOLDER": "Paula M. L. Moya", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUPZ9967159", + "Key": "H&SKAUPZ9967159", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Francis W. Bergstrom Professorship", "CURRENT HOLDER": "Paul A. Wender", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAWB4153607", + "Key": "H&SKAAWB4153607", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bing Directorship of the Program in Human Biology", "CURRENT HOLDER": "Lianne Kurina", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQFC3288925", + "Key": "H&SKAQFC3288925", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bing Professorship in Environmental Studies", "CURRENT HOLDER": "Gretchen C. Daily", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQFB9896895", + "Key": "H&SKAQFB9896895", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bing Professorship in Human Biology", "CURRENT HOLDER": "Laurence C. Baker", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQFC4286167", + "Key": "H&SKAQFC4286167", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bing Professorship in Population Studies", "CURRENT HOLDER": "Jonathan Pritchard", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQEY9969585", + "Key": "H&SKAQEY9969585", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Felix Bloch Professorship in Physics", "CURRENT HOLDER": "Leonard Susskind", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAANW5283828", + "Key": "H&SKAANW5283828", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Luke Blossom Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Roger Blandford", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAANW2440725", + "Key": "H&SKAANW2440725", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Luke Blossom Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Peter F. Michelson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCND50006205", + "Key": "H&SKBCND50006205", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Eavan Boland Professorship", "CURRENT HOLDER": "Patrick Phillips", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAOO5517874", + "Key": "H&SKAAOO5517874", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Scott and Donya Bommer Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Caroline M. Hoxby", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQDK9894684", + "Key": "H&SKAQDK9894684", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Mary Lou and George Boone Professorship for the Director of the Stanford in Washington Program", "CURRENT HOLDER": "Adrienne M. Jamieson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQIC9713330", + "Key": "H&SKAQIC9713330", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bowman Family Professorship", "CURRENT HOLDER": "Matthew Sommer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQEO50013829", + "Key": "H&SKAQEO50013829", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Alden H. and Winifred Hubbard Brown Faculty Fellow", "CURRENT HOLDER": "Barbara Kiviat", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQEG50008831", + "Key": "H&SKAQEG50008831", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Barbara Kimball Browning Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Richard Taylor", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQHU5453004", + "Key": "H&SKAQHU5453004", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The George Edwin Burnell Professorship in Religious Studies", "CURRENT HOLDER": "Paul M. Harrison", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQFP0", + "Key": "H&SKAQFP0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Margaret Byrne Professorship in American History", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTI0", + "Key": "H&SKBJTI0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Chan Soon-Shiong Professorship in International Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQLA6080661", + "Key": "H&SKAQLA6080661", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Harry and Norman Chandler Professorship in Communication", "CURRENT HOLDER": "Jeffrey Hancock", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQLA5249944", + "Key": "H&SKAQLA5249944", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Harry and Norman Chandler Professorship in Communication", "CURRENT HOLDER": "Frederick Turner", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAEL9917147", + "Key": "H&SKAAEL9917147", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Dr. Nancy Chang Professorship", "CURRENT HOLDER": "Martha S. Cyert", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCJB3494200", + "Key": "H&SKBCJB3494200", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marvin Chodorow Professorship", "CURRENT HOLDER": "Kathryn A. Moler", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPK5653737", + "Key": "H&SKBCPK5653737", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Choi-Lam H&S Lectureship in Undergraduate Teaching", "CURRENT HOLDER": "Theresa Iker", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQJS9966466", + "Key": "H&SKAQJS9966466", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Christensen Professorship in Asian Art", "CURRENT HOLDER": "Richard E. Vinograd", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADK5281506", + "Key": "H&SKBADK5281506", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Robertson Coe Professorship", "CURRENT HOLDER": "Michele Elam", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADK9823683", + "Key": "H&SKBADK9823683", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Robertson Coe Professorship", "CURRENT HOLDER": "Shanto Iyengar", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADK3166212", + "Key": "H&SKBADK3166212", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Robertson Coe Professorship in American Literature", "CURRENT HOLDER": "Nancy Ruttenburg", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADK9706460", + "Key": "H&SKBADK9706460", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Robertson Coe Professorship in History and American Studies", "CURRENT HOLDER": "Caroline Winterer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAURM5794827", + "Key": "H&SKAURM5794827", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John Philip Coghlan Fellow in the Humanities", "CURRENT HOLDER": "Johannes Eichstaedt", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKCJTA6001216", + "Key": "H&SKCJTA6001216", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Wayne and Jodi Cooperman Professorship", "CURRENT HOLDER": "Mark G. Duggan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQKL4760179", + "Key": "H&SKAQKL4760179", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Benjamin Scott Crocker Professorship in Human Biology", "CURRENT HOLDER": "Michael C. Frank", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQOO5584433", + "Key": "H&SKAQOO5584433", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Nina C. Crocker Faculty Scholar", "CURRENT HOLDER": "Jennifer Pan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQOO50007275", + "Key": "H&SKAQOO50007275", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Nina C. Crocker Faculty Scholar", "CURRENT HOLDER": "Young Jean Lee", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQLT9825035", + "Key": "H&SKAQLT9825035", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Edward Clark Crossett Professorship in Humanistic Studies", "CURRENT HOLDER": "Amir Eshel", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQLT9669701", + "Key": "H&SKAQLT9669701", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Edward Clark Crossett Professorship in Humanistic Studies", "CURRENT HOLDER": "Kathryn Starkey", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTAT4521522", + "Key": "H&SKJTAT4521522", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Dennis Cunningham Professorship", "CURRENT HOLDER": "Christine Jacobs-Wagner", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAXY0", + "Key": "H&SKAAXY0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bita Daryabari Professorship in Persian Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAQS9787417", + "Key": "H&SNAAQS9787417", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The George A. and Hilda M. Daubert Professorship in Chemistry", "CURRENT HOLDER": "Eric T. Kool", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUSC9896259", + "Key": "H&SKAUSC9896259", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Davis-Brack Professorship in the Behavioral Sciences", "CURRENT HOLDER": "Hazel R. Markus", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADN0", + "Key": "H&SKBADN0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John B. and Jean De Nault Professorship in Marine Science at the Hopkins Marine Station", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAYL50007275", + "Key": "H&SKAAYL50007275", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Denning Family Professorship in the Arts", "CURRENT HOLDER": "Young Jean Lee", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKCJTB5849523", + "Key": "H&SKCJTB5849523", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Roberta Bowman Denning Professorship", "CURRENT HOLDER": "Elaine Treharne", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQOJ9784885", + "Key": "H&SKAQOJ9784885", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Dickason Professorship in the Humanities", "CURRENT HOLDER": "Walter Scheidel", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADO9969957", + "Key": "H&SKBADO9969957", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Fairleigh S. Dickinson, Jr. Professorship in Public Policy", "CURRENT HOLDER": "Laura L. Carstensen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADO9937863", + "Key": "H&SKBADO9937863", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Fairleigh S. Dickinson, Jr. Professorship in Public Policy", "CURRENT HOLDER": "Paul M. Sniderman", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTR50001903", + "Key": "H&SKBJTR50001903", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Michelle and Kevin Douglas Professorship in International Studies", "CURRENT HOLDER": "Anna Grzymala-Busse", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBLBL99982829", + "Key": "H&SKBLBL99982829", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Michelle and Kevin Douglas Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Dmitri Petrov", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQPL5370205", + "Key": "H&SKAQPL5370205", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Morris M. Doyle Centennial Professorship in Public Policy", "CURRENT HOLDER": "Justin Grimmer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUTA50012795", + "Key": "H&SKAUTA50012795", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Jean G. and Morris M. Doyle Professorship in Interdisciplinary Studies", "CURRENT HOLDER": "Ato Quayson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQPD7332125", + "Key": "H&SKAQPD7332125", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Camille Dreyfus Professorship in Chemistry", "CURRENT HOLDER": "Steven G. Boxer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQPD9787599", + "Key": "H&SKAQPD9787599", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Henry Dreyfus Professorship in Chemistry", "CURRENT HOLDER": "Justin Du Bois", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAEG2977767", + "Key": "H&SKAAEG2977767", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Duca Family Professorship", "CURRENT HOLDER": "Christopher D. Chafe", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAANI5849503", + "Key": "H&SKAANI5849503", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Charles Louis Ducommun Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Bruce E. Cain", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQQJ5778511", + "Key": "H&SKAQQJ5778511", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Dunlevie Family Professorship", "CURRENT HOLDER": "Florencia Torche", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQQC7025166", + "Key": "H&SKAQQC7025166", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The U. G. and Abbie Birch Durfee Professorship", "CURRENT HOLDER": "Michael E. Bratman", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUTM5356840", + "Key": "H&SKAUTM5356840", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Lewis and Virginia Eaton Professorship", "CURRENT HOLDER": "Carol Dweck", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUTO9702436", + "Key": "H&SKAUTO9702436", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William D. Eberle Professorship in Economics", "CURRENT HOLDER": "Nicholas A. Bloom", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUTO3522638", + "Key": "H&SKAUTO3522638", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William D. Eberle Professorship in Economics", "CURRENT HOLDER": "Matthew O. Jackson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKCJTP5849503", + "Key": "H&SKCJTP5849503", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Spence and Cleone Eccles Family Directorship of the Bill Lane Center for the American West", "CURRENT HOLDER": "Bruce E. Cain", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAMM9898073", + "Key": "H&SNAAMM9898073", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Edward Ames Edmonds Professorship", "CURRENT HOLDER": "B. Douglas Bernheim", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAMM9942756", + "Key": "H&SNAAMM9942756", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Edward Ames Edmonds Professorship in Economics", "CURRENT HOLDER": "David B. Grusky", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQQI9958927", + "Key": "H&SKAQQI9958927", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Paul C. Edwards Professorship in Communication", "CURRENT HOLDER": "Byron B. Reeves", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADR9933888", + "Key": "H&SKBADR9933888", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Mulvane Ehrsam and Edward Curtis Franklin Professorship in Chemistry", "CURRENT HOLDER": "Michael D. Fayer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADR9965997", + "Key": "H&SKBADR9965997", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Mulvane Ehrsam and Edward Curtis Franklin Professorship in Chemistry", "CURRENT HOLDER": "Keith O. Hodgson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADR5619898", + "Key": "H&SKBADR5619898", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Mulvane Ehrsam and Edward Curtis Franklin Professorship in Chemistry", "CURRENT HOLDER": "Todd J. Martínez", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAMQ9979690", + "Key": "H&SNAAMQ9979690", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Shirley R. and Leonard W. Ely, Jr. Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Dominique Bergmann", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAMQ2528578", + "Key": "H&SNAAMQ2528578", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Shirley R. and Leonard W. Ely, Jr. Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Paul Milgrom", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBADU7914203", + "Key": "H&SKBADU7914203", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Walter Y. Evans-Wentz Professorship in Oriental Philosophies, Religions, and Ethics", "CURRENT HOLDER": "Lee H. Yearley", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUNA0", + "Key": "H&SKAUNA0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Faculty Fellow in Jewish Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTV3713187", + "Key": "H&SKAJTV3713187", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marjorie Mhoon Fair Professorship in Quantitative Science", "CURRENT HOLDER": "Amir Dembo", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUUI9970476", + "Key": "H&SKAUUI9970476", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marjorie Mhoon Fair Professorship in Quantitative Science", "CURRENT HOLDER": "Iain M. Johnstone", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQUX9750464", + "Key": "H&SKAQUX9750464", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Frances and Charles Field Professorship in History", "CURRENT HOLDER": "Jessica Riskin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQUX9713272", + "Key": "H&SKAQUX9713272", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Frances and Charles Field Professorship in History", "CURRENT HOLDER": "Kären Wigen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQRH5568619", + "Key": "H&SKAQRH5568619", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Barbara D. Finberg Directorship of the Michelle R. Clayman Institute for Gender Research", "CURRENT HOLDER": "Adrian Daub", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAIZ4657383", + "Key": "H&SKAAIZ4657383", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sakurako and William Fisher Family Directorship of the Stanford Global Studies Division", "CURRENT HOLDER": "Jisha Menon", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAXD5678734", + "Key": "H&SKAAXD5678734", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sakurako and William Fisher Family Faculty Scholar", "CURRENT HOLDER": "Adrien Auclert", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAXD0", + "Key": "H&SKAAXD0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sakurako and William Fisher Family Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTI50012310", + "Key": "H&SKAJTI50012310", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ford Dorsey Directorship of the Center for African Studies", "CURRENT HOLDER": "Joel Cabrita", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAXNV9877192", + "Key": "H&SKAXNV9877192", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Joan B. Ford Professorship", "CURRENT HOLDER": "Mark Granovetter", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQUZ5164078", + "Key": "H&SKAQUZ5164078", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Susan B. Ford Professorship", "CURRENT HOLDER": "Mary Beth Mudgett", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTN0", + "Key": "H&SKBJTN0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert G. Freeman Professorship in International Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQXV7039589", + "Key": "H&SKAQXV7039589", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Tully Friedman Professorship in Economics", "CURRENT HOLDER": "Michael J. Boskin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQDB3777109", + "Key": "H&SKAQDB3777109", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Theodore and Frances Geballe Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "James D. Fearon", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQZY9775339", + "Key": "H&SKAQZY9775339", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Gildred Professorship in Latin American Studies", "CURRENT HOLDER": "Zephyr Frank", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBBBX9750464", + "Key": "H&SKBBBX9750464", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Jean-Paul Gimon Directorship of the France-Stanford Center for Interdisciplinary Studies", "CURRENT HOLDER": "Jessica Riskin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBFAC5247859", + "Key": "H&SKBFAC5247859", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Kimberly Glenn Professorship", "CURRENT HOLDER": "Jens Hainmueller", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAXOS5307879", + "Key": "H&SKAXOS5307879", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Frederic O. Glover Professorship in Humanities and Social Sciences", "CURRENT HOLDER": "Jon A. Krosnick", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTG9713322", + "Key": "H&SKAJTG9713322", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Prabhu Goel Family Professorship", "CURRENT HOLDER": "Steven A. Kivelson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARAI0", + "Key": "H&SKARAI0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William H. and Frances Green Faculty Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTR5358340", + "Key": "H&SKAJTR5358340", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert Grimmett Professorship in Mathematics", "CURRENT HOLDER": "Eleny Ionel", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARBD9904244", + "Key": "H&SKARBD9904244", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert Grimmett Professorship in Mathematics", "CURRENT HOLDER": "George C. Papanicolaou", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARBD9749367", + "Key": "H&SKARBD9749367", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert Grimmett Professorship in Mathematics", "CURRENT HOLDER": "Ravi Vakil", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTR3895216", + "Key": "H&SKAJTR3895216", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert Grimmett Professorship in Mathematics", "CURRENT HOLDER": "András Vasy", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUWS5778499", + "Key": "H&SKAUWS5778499", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Albert Guérard Professorship in Literature", "CURRENT HOLDER": "Mark McGurl", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUWS5289802", + "Key": "H&SKAUWS5289802", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Albert Guérard Professorship in Literature", "CURRENT HOLDER": "Blakey Vermeule", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUWV9640663", + "Key": "H&SKAUWV9640663", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Richard E. Guggenhime Faculty Scholar", "CURRENT HOLDER": "Angele Christin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUWV5345290", + "Key": "H&SKAUWV5345290", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Richard E. Guggenhime Faculty Scholar", "CURRENT HOLDER": "Vera Gribanova", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAIR9969809", + "Key": "H&SKAAIR9969809", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John A. and Cynthia Fry Gunn Professorship", "CURRENT HOLDER": "Robert M. Sapolsky", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQZP9972191", + "Key": "H&SKAQZP9972191", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Walter A. Haas Professorship in the Humanities", "CURRENT HOLDER": "Russell Berman", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQZP5569846", + "Key": "H&SKAQZP5569846", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Walter A. Haas Professorship in the Humanities", "CURRENT HOLDER": "Haiyan Lee", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUXB9852690", + "Key": "H&SKAUXB9852690", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Haas Professorship in Chinese Politics", "CURRENT HOLDER": "Jean C. Oi", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUXB5451736", + "Key": "H&SKAUXB5451736", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Haas Professorship in Chinese Studies", "CURRENT HOLDER": "Ban Wang", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAATK9876400", + "Key": "H&SKAATK9876400", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John Roberts Hale Directorship of the Stanford Language Center", "CURRENT HOLDER": "Elizabeth B. Bernhardt", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARAA5352639", + "Key": "H&SKARAA5352639", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert and Ruth Halperin Professorship in Art History", "CURRENT HOLDER": "Richard Meyer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAIU0", + "Key": "H&SKAAIU0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert and Ruth Halperin Professorship in Photography", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAATQ9960022", + "Key": "H&SKAATQ9960022", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Hamamoto Family Professorship", "CURRENT HOLDER": "Savas G. Dimopoulos", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUXL5277711", + "Key": "H&SKAUXL5277711", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Andrew B. Hammond Professorship in French Language, Literature, and Civilization", "CURRENT HOLDER": "Margaret Cohen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAUN9863358", + "Key": "H&SKAAUN9863358", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Andrew B. Hammond Professorship in French Language, Literature, and Civilization", "CURRENT HOLDER": "Joshua Landy", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAREN31146475", + "Key": "H&SKAREN31146475", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Hearst Professional in Residence Chair", "CURRENT HOLDER": "Geralyn Migielicz", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAATJ5561130", + "Key": "H&SKAATJ5561130", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Hearst Professorship", "CURRENT HOLDER": "James T. Hamilton", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARBP5375992", + "Key": "H&SKARBP5375992", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Dr. Morris Herzstein Professorship", "CURRENT HOLDER": "Or P. Gozani", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUYA9896648", + "Key": "H&SKAUYA9896648", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ernest R. Hilgard Professorship", "CURRENT HOLDER": "James Gross", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBNKO9749441", + "Key": "H&SKBNKO9749441", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Susan S. and William H. Hindle Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Kalanit Grill-Spector", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARCJ5353998", + "Key": "H&SKARCJ5353998", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John L. Hinds Professorship in the History of Science", "CURRENT HOLDER": "Londa Schiebinger", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBLBH3657160", + "Key": "H&SKBLBH3657160", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert H. N. Ho Family Foundation Professorship in Buddhist Studies", "CURRENT HOLDER": "John H. Kieschnick", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAWD5708603", + "Key": "H&SKAAWD5708603", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sir Robert Ho Tung Professorship in Chinese Archaeology", "CURRENT HOLDER": "Li Liu", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCQM5584433", + "Key": "H&SKBCQM5584433", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sir Robert Ho Tung Professorship in Chinese Studies", "CURRENT HOLDER": "Jennifer Pan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAEG9924440", + "Key": "H&SKBAEG9924440", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Hoagland Family Professorship in Humanities and Sciences", "CURRENT HOLDER": "Ramón Saldívar", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARCK5357362", + "Key": "H&SKARCK5357362", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Osgood Hooker Professorship in Fine Arts", "CURRENT HOLDER": "Pavle Levi", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAAZ0", + "Key": "H&SNAAAZ0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Omar and Althea Dwyer Hoskins Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPO50020640", + "Key": "H&SKBCPO50020640", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Humanities and Sciences Professorship I", "CURRENT HOLDER": "Aaron Van Jordan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPR5452191", + "Key": "H&SKBCPR5452191", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Humanities and Sciences Professorship II", "CURRENT HOLDER": "Risa Wechsler", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPS9936600", + "Key": "H&SKBCPS9936600", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Humanities and Sciences Professorship III", "CURRENT HOLDER": "Andrei Linde", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAQN5252411", + "Key": "H&SKAAQN5252411", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Huntington Dean’s Faculty Scholar", "CURRENT HOLDER": "Rosa Cao", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAQN50008248", + "Key": "H&SKAAQN50008248", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Huntington Dean’s Faculty Scholar", "CURRENT HOLDER": "Laura M. K. Dassama", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUZO3707817", + "Key": "H&SKAUZO3707817", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Yamato Ichihashi Professorship in Japanese History and Civilization", "CURRENT HOLDER": "Yoshiko Matsumoto", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAVJ0", + "Key": "H&SKAAVJ0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Shinso Ito Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUYW0", + "Key": "H&SKAUYW0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The J. G. Jackson and C. J. Wood Professorship in Chemistry", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUYX2758399", + "Key": "H&SKAUYX2758399", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The J. G. Jackson and C. J. Wood Professorship in Physics", "CURRENT HOLDER": "Martin M. Fejer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTT5515676", + "Key": "H&SKAJTT5515676", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Starr Jordan Professorship", "CURRENT HOLDER": "Daniel S. Fisher", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARIB9867086", + "Key": "H&SKARIB9867086", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David Starr Jordan Professorship", "CURRENT HOLDER": "Ian H. Gotlib", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARJX3751476", + "Key": "H&SKARJX3751476", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William R. Kenan, Jr. Professorship", "CURRENT HOLDER": "Mark Kasevich", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARJX9940040", + "Key": "H&SKARJX9940040", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William R. Kenan, Jr. Professorship", "CURRENT HOLDER": "Steven Chu", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAWJ9917030", + "Key": "H&SKBAWJ9917030", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Catherine R. Kennedy and Daniel L. Grossman Fellow in Human Biology", "CURRENT HOLDER": "David M. Lyons", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAWJ5518402", + "Key": "H&SKBAWJ5518402", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Catherine R. Kennedy and Daniel L. Grossman Fellow in Human Biology", "CURRENT HOLDER": "Joe Nation", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAWJ9784885", + "Key": "H&SKBAWJ9784885", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Catherine R. Kennedy and Daniel L. Grossman Fellow in Human Biology", "CURRENT HOLDER": "Walter Scheidel", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAWJ3751286", + "Key": "H&SKBAWJ3751286", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Catherine R. Kennedy and Daniel L. Grossman Fellow in Human Biology", "CURRENT HOLDER": "William S. Talbot", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAACB9869512", + "Key": "H&SKAACB9869512", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Donald Kennedy Chair in the School of Humanities and Sciences", "CURRENT HOLDER": "Judith Frydman", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARJV4365953", + "Key": "H&SKARJV4365953", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Joan Kenney Professorship in Economics", "CURRENT HOLDER": "Monika Piazzesi", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVAT50006576", + "Key": "H&SKAVAT50006576", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Gretchen B. Kimball Directorship of Orchestral Studies", "CURRENT HOLDER": "Paul Phillips", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARIW5452672", + "Key": "H&SKARIW5452672", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sara Hart Kimball Professorship in the Humanities", "CURRENT HOLDER": "Branislav Jakovljević", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAXOT9953134", + "Key": "H&SKAXOT9953134", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Cassius Lamb Kirk Professorship in Natural Sciences", "CURRENT HOLDER": "Rafe Mazzeo", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAXJ5505795", + "Key": "H&SKAAXJ5505795", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Kleinheinz Family Professorship in European Studies", "CURRENT HOLDER": "Richard P. Saller", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKCJTG0", + "Key": "H&SKCJTG0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Kleinheinz Family Professorship in International Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATBW0", + "Key": "H&SKATBW0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Bella Mabury and Eloise Mabury Knapp Professorship in Humanities", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCNE0", + "Key": "H&SKBCNE0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Knight Family Professorship in Creative Writing", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTP4759114", + "Key": "H&SKBJTP4759114", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Phil and Penny Knight Professorship in Creative Writing", "CURRENT HOLDER": "Adam Johnson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARNF0", + "Key": "H&SKARNF0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Josephine Knotts Knowles Professorship in Human Biology", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAANU0", + "Key": "H&SKAANU0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Korea Foundation Korean Studies Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAEY9925876", + "Key": "H&SKBAEY9925876", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Daniel E. Koshland Professorship in Jewish Culture and History", "CURRENT HOLDER": "Aron Rodrigue", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAEY99993073", + "Key": "H&SKBAEY99993073", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Daniel E. Koshland Professorship in Jewish Culture and History", "CURRENT HOLDER": "Steven J. Zipperstein", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAOQ9700789", + "Key": "H&SKAAOQ9700789", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Markos & Eleni Kounalakis Chair in Honor of Constantine Mitsotakis", "CURRENT HOLDER": "Josiah Ober", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBASK0", + "Key": "H&SKBASK0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Kratter Professorship in European History", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARKH9953761", + "Key": "H&SKARKH9953761", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ward C. Krebs Family Professorship", "CURRENT HOLDER": "Barry R. Weingast", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTB0", + "Key": "H&SKBJTB0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Annie and Ned Lamont Professorship in International Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBASD3643541", + "Key": "H&SKBASD3643541", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Landau Professorship in Economic Policy", "CURRENT HOLDER": "Peter Klenow", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAFJ5942678", + "Key": "H&SKBAFJ5942678", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Landau Professorship in Technology and the Economy", "CURRENT HOLDER": "Matthew Gentzkow", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARKD0", + "Key": "H&SKARKD0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Melvin and Bill Lane Professorship for the Director of the Creative Writing Program", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAANK2641298", + "Key": "H&SKAANK2641298", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Melvin and Joan Lane Professorship in Interdisciplinary Environmental Studies", "CURRENT HOLDER": "Christopher B. Field", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVBR5511238", + "Key": "H&SKAVBR5511238", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Albert Ray Lang Professorship", "CURRENT HOLDER": "Tanya Luhrmann", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVBR4438263", + "Key": "H&SKAVBR4438263", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Albert Ray Lang Professorship in Psychology", "CURRENT HOLDER": "Russell A. Poldrack", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAFI0", + "Key": "H&SKBAFI0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Roger and Cynthia Lang Professorship in Environmental Anthropology", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAPQ5311059", + "Key": "H&SKAAPQ5311059", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Frank Lee and Carol Hall Professorship", "CURRENT HOLDER": "Kang Shen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAROT5214660", + "Key": "H&SKAROT5214660", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Pauline K. Levin-Robert L. Levin and Pauline C. Levin-Abraham Levin Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Muriel Niederle", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASFR9868159", + "Key": "H&SKASFR9868159", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Clarence Irving Lewis Professorship in Philosophy", "CURRENT HOLDER": "Christopher J. Bobonich", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAATT5223613", + "Key": "H&SKAATT5223613", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Clarence Irving Lewis Professorship in Philosophy", "CURRENT HOLDER": "Graciela De Pierris", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASFR0", + "Key": "H&SKASFR0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Clarence Irving Lewis Professorship in Philosophy", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASGI9726779", + "Key": "H&SKASGI9726779", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Kwoh-Ting Li Professorship in Chinese Culture", "CURRENT HOLDER": "Mark E. Lewis", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASGJ3536539", + "Key": "H&SKASGJ3536539", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Kwoh-Ting Li Professorship in Economic Development", "CURRENT HOLDER": "Xueguang Zhou", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBANX2664472", + "Key": "H&SKBANX2664472", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Iris Litt Fellow", "CURRENT HOLDER": "Linda M. Boxer", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBANX5791979", + "Key": "H&SKBANX5791979", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Iris Litt Fellow", "CURRENT HOLDER": "Judith “Jodi” Prochaska", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPJ5256567", + "Key": "H&SKBCPJ5256567", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Liu-Dang Lectureship in Undergraduate Teaching", "CURRENT HOLDER": "Aiko Takeuchi", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASXW9825241", + "Key": "H&SKASXW9825241", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Eva Chernov Lokey Professorship in Jewish Studies", "CURRENT HOLDER": "Gabriella Safran", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVCJ7954506", + "Key": "H&SKAVCJ7954506", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Lorry I. Lokey/Business Wire Professorship", "CURRENT HOLDER": "H. Craig Heller", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASZP3436581", + "Key": "H&SKASZP3436581", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Donald L. Lucas Endowed Professorship in Economics", "CURRENT HOLDER": "Kyle Bagwell", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVBK9787706", + "Key": "H&SKAVBK9787706", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Richard W. Lyman Professorship in the Humanities", "CURRENT HOLDER": "Alex Woloch", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASZC9765892", + "Key": "H&SKASZC9765892", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ann O’Day Maples Professorship in the Arts", "CURRENT HOLDER": "Peggy Phelan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBNKX1849124", + "Key": "H&SKBNKX1849124", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Craig and Susan McCaw Professorship", "CURRENT HOLDER": "Alvin Roth", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAVC4409678", + "Key": "H&SKAAVC4409678", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The James B. McClatchy Professorship", "CURRENT HOLDER": "Nathaniel A. Persily", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASZD0", + "Key": "H&SKASZD0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert and Florence McDonnell Professorship in Eastern European Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPN4298568", + "Key": "H&SKBCPN4298568", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The McGregor-Girand Professorship in Social Ethics of Science and Technology", "CURRENT HOLDER": "Rob Reich", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATBN0", + "Key": "H&SKATBN0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Donald J. McLachlan Professorship in History", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAFU7046600", + "Key": "H&SKBAFU7046600", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert and Carole McNeil Endowed Professorship in Economics and Senior Fellow at the Hoover Institution", "CURRENT HOLDER": "Robert E. Hall", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATAP9789942", + "Key": "H&SKATAP9789942", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anthony P. Meier Family Professorship in the Humanities", "CURRENT HOLDER": "Roland Greene", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCFK4639068", + "Key": "H&SKBCFK4639068", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Michelle Mercer and Bruce Golden Family Professorship in Feminist and Gender Studies", "CURRENT HOLDER": "Rachel Jean-Baptiste", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCFL4367850", + "Key": "H&SKBCFL4367850", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Michelle Mercer and Bruce Golden Family Professorship in Women’s Leadership", "CURRENT HOLDER": "Shelley J. Correll", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAMT0", + "Key": "H&SKAAMT0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Charles Michael Professorship in Jewish History and Culture", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARMV0", + "Key": "H&SKARMV0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Harold A. Miller Professorship for the Director of Hopkins Marine Station", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAHC9970013", + "Key": "H&SKAAHC9970013", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The A. A. and Jeanne Welch Milligan Professorship", "CURRENT HOLDER": "Stephen H. Haber", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPM6118551", + "Key": "H&SKBCPM6118551", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Jane Kim and Jung Min H&S Lectureship in Undergraduate Teaching", "CURRENT HOLDER": "Taylor Madigan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAALL5264077", + "Key": "H&SKAALL5264077", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Hamid and Christina Moghadam Directorship of Iranian Studies", "CURRENT HOLDER": "Abbas Milani", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBACV4259537", + "Key": "H&SKBACV4259537", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Teresa Hihn Moore Professorship in Religious Studies", "CURRENT HOLDER": "Michael Penn", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVEP9941618", + "Key": "H&SKAVEP9941618", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Clifford G. Morrison Professorship in Population and Resources Studies", "CURRENT HOLDER": "Peter M. Vitousek", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARPF9926346", + "Key": "H&SKARPF9926346", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Dean and Virginia Morrison Professorship in Population Studies", "CURRENT HOLDER": "Shripad Tuljapurkar", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAUXD9826314", + "Key": "H&SKAUXD9826314", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Harry S. Mosher Professorship", "CURRENT HOLDER": "William E. Moerner", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARPR9962697", + "Key": "H&SKARPR9962697", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Caroline S. G. Munro Professorship in Political Science", "CURRENT HOLDER": "Scott D. Sagan", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARPR5700660", + "Key": "H&SKARPR5700660", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Bennett Munro Professorship in Political Science", "CURRENT HOLDER": "Gary W. Cox", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARPR3960747", + "Key": "H&SKARPR3960747", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Bennett Munro Professorship in Political Science", "CURRENT HOLDER": "Kenneth Schultz", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARPR35040971", + "Key": "H&SKARPR35040971", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William Bennett Munro Professorship in Political Science", "CURRENT HOLDER": "Michael R. Tomz", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARSO0", + "Key": "H&SKARSO0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Shuzo Nishihara Professorship in Environmental and Resource Economics", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAANP9951179", + "Key": "H&SKAANP9951179", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Louise Hewlett Nixon Professorship", "CURRENT HOLDER": "David Palumbo-Liu", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAVR9852443", + "Key": "H&SKBAVR9852443", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Denise O’Leary and Kent Thiry Professorship in the Humanities and Sciences", "CURRENT HOLDER": "Andrew G. Walder", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAVL3203916", + "Key": "H&SKAAVL3203916", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ken Olivier & Angela Nomellini Professorship in International Studies", "CURRENT HOLDER": "Michael A. McFaul", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTH3161130", + "Key": "H&SKBJTH3161130", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The John A. Overdeck Professorship", "CURRENT HOLDER": "Trevor J. Hastie", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVFK0", + "Key": "H&SKAVFK0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David and Lucile Packard Foundation Professorship in Human Biology", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVFL9765801", + "Key": "H&SKAVFL9765801", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The David and Lucile Packard Professorship in Marine Science", "CURRENT HOLDER": "Fiorenza Micheli", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTS1722719", + "Key": "H&SKAJTS1722719", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Olive H. Palmer Professorship in the Humanities", "CURRENT HOLDER": "Gordon Chang", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARSK3399508", + "Key": "H&SKARSK3399508", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Olive H. Palmer Professorship in the Humanities", "CURRENT HOLDER": "Leif Wenar", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVFW9773698", + "Key": "H&SKAVFW9773698", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Sadie Dernham Patek Professorship in Humanities", "CURRENT HOLDER": "Denise Gigante", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAFY6080660", + "Key": "H&SKBAFY6080660", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Gordon and Dailey Pattee Faculty Fellow in the Humanities and Social Sciences", "CURRENT HOLDER": "Vicky Fouka", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARVM5289805", + "Key": "H&SKARVM5289805", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Janet M. Peck Professorship in International Communication", "CURRENT HOLDER": "James Fishkin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARVM9969932", + "Key": "H&SKARVM9969932", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Janet M. Peck Professorship in International Communication", "CURRENT HOLDER": "Judith L. Goldstein", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAMR9757345", + "Key": "H&SKAAMR9757345", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William J. Perry Professorship", "CURRENT HOLDER": "Gi-Wook Shin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBLBT5357292", + "Key": "H&SKBLBT5357292", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Stephen R. Pierce Family Goldman Sachs Professorship in Science and Human Health", "CURRENT HOLDER": "Wing H. Wong", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAARB0", + "Key": "H&SNAARB0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Rosina Pierotti Professorship in Italian Literature", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAAAW9867813", + "Key": "H&SNAAAW9867813", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ubaldo Pierotti Professorship in Italian History", "CURRENT HOLDER": "Paula E. Findlen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAME9789942", + "Key": "H&SKAAME9789942", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Mark Pigott KBE Professorship", "CURRENT HOLDER": "Roland Greene", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCNZ0", + "Key": "H&SKBCNZ0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Practical Ethics Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAGG9900770", + "Key": "H&SKBAGG9900770", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Charles and Elizabeth Prothro Professorship in Marine Sciences", "CURRENT HOLDER": "Barbara Block", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBCPB5177779", + "Key": "H&SKBCPB5177779", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Nehal and Jenny Fan Raj Lecturer in Undergraduate Teaching", "CURRENT HOLDER": "Brian Coyne", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATDH9779489", + "Key": "H&SKATDH9779489", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Anthony E. and Isabelle Raubitschek Professorship in Classics", "CURRENT HOLDER": "Richard P. Martin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATDF1630854", + "Key": "H&SKATDF1630854", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Mary and Robert Raymond Professorship in Economics", "CURRENT HOLDER": "John B. Taylor", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATEH9971490", + "Key": "H&SKATEH9971490", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Reed-Hodgson Professorship in Human Biology", "CURRENT HOLDER": "Margaret T. Fuller", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATEH0", + "Key": "H&SKATEH0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Reed-Hodgson Professorship in Human Biology", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVGX9787714", + "Key": "H&SKAVGX9787714", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Frederick P. Rehmus Family Professorship in Humanities", "CURRENT HOLDER": "Gavin Jones", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATDV3756434", + "Key": "H&SKATDV3756434", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Jackson Eli Reynolds Professorship in Humanities", "CURRENT HOLDER": "Dan Jurafsky", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBASC9940495", + "Key": "H&SKBASC9940495", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Herald L. and Caroline L. Ritch Professorship in Humanities and Sciences", "CURRENT HOLDER": "Yakov Eliashberg", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATHY3215936", + "Key": "H&SKATHY3215936", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Edgar E. Robinson Professorship in United States History", "CURRENT HOLDER": "James T. Campbell", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATNZ9942384", + "Key": "H&SKATNZ9942384", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Theodore and Sydney Rosenberg Professorship in Applied Physics", "CURRENT HOLDER": "Aharon Kapitulnik", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAUQ0", + "Key": "H&SKAAUQ0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Victoria and Roger Sant Professorship in Art", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAPM3870938", + "Key": "H&SKAAPM3870938", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Harold C. Schmidt Directorship of Choral Studies", "CURRENT HOLDER": "Stephen M. Sano", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVIE9692957", + "Key": "H&SKAVIE9692957", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Victoria Schuck Faculty Scholar in Political Science", "CURRENT HOLDER": "Lisa Blaydes", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVIE5774732", + "Key": "H&SKAVIE5774732", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Victoria Schuck Faculty Scholar in Political Science", "CURRENT HOLDER": "Adam Bonica", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAQRI5212203", + "Key": "H&SKAQRI5212203", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Charles R. Schwab Professorship in Economics", "CURRENT HOLDER": "Liran Einav", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARYQ2752160", + "Key": "H&SKARYQ2752160", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Leon Sloss, Jr. Professorship", "CURRENT HOLDER": "José David Saldívar", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAYU9769688", + "Key": "H&SKAAYU9769688", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Leland and Edith Smith Professorship", "CURRENT HOLDER": "Mark S. Applebaum", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAR9965310", + "Key": "H&SKASAR9965310", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Monroe E. Spaght Professorship in Chemistry", "CURRENT HOLDER": "Edward I. Solomon", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAHF9668432", + "Key": "H&SKBAHF9668432", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Gesue and Helen Spogli Professorship in Italian Studies", "CURRENT HOLDER": "Christopher Krebs", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKARAC4068813", + "Key": "H&SKARAC4068813", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Raymond A. Spruance Professorship in International History", "CURRENT HOLDER": "Priya Satia", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAVE5404620", + "Key": "H&SKBAVE5404620", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Stanford Federal Credit Union Professorship", "CURRENT HOLDER": "Ran Abramitzky", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBNKH4542536", + "Key": "H&SKBNKH4542536", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Stanford Professorship in Population Genetics and Society", "CURRENT HOLDER": "Noah A. Rosenberg", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTP5927657", + "Key": "H&SKAJTP5927657", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Stanford Professorship in Quantum Physics", "CURRENT HOLDER": "Patrick Hayden", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAB5204259", + "Key": "H&SKASAB5204259", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Jane and Marshall Steel, Jr., Professorship in Marine Sciences", "CURRENT HOLDER": "Stephen Palumbi", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAE9939265", + "Key": "H&SKASAE9939265", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The William C. Steere, Jr.-Pfizer Inc. Professorship in Biological Sciences", "CURRENT HOLDER": "Sharon R. Long", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAHP9970609", + "Key": "H&SKAAHP9970609", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Isaac and Madeline Stein Family Professorship", "CURRENT HOLDER": "Brian A. Wandell", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAGZ3232535", + "Key": "H&SKBAGZ3232535", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Max H. Stein Professorship", "CURRENT HOLDER": "Art Owen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAT9867847", + "Key": "H&SKASAT9867847", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The J. E. Wallace Sterling Professorship in the Humanities", "CURRENT HOLDER": "R. Lanier Anderson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAT5568619", + "Key": "H&SKASAT5568619", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The J. E. Wallace Sterling Professorship in the Humanities", "CURRENT HOLDER": "Adrian Daub", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAU5000025", + "Key": "H&SKASAU5000025", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Lucie Stern Professorship in the Social Sciences", "CURRENT HOLDER": "James McClelland", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAU4152849", + "Key": "H&SKASAU4152849", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Lucie Stern Professorship in the Social Sciences", "CURRENT HOLDER": "Anthony D. Wagner", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASCB5289806", + "Key": "H&SKASCB5289806", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Thomas More Storke Professorship", "CURRENT HOLDER": "Jeremy Bailenson", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASBP9784307", + "Key": "H&SKASBP9784307", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Graham H. Stuart Professorship in International Relations", "CURRENT HOLDER": "Beatriz Magaloni-Kerpel", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASBO9785841", + "Key": "H&SKASBO9785841", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Henry Waldgrave Stuart Memorial Professorship", "CURRENT HOLDER": "Krista Lawlor", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASBO9918905", + "Key": "H&SKASBO9918905", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Henry Waldgrave Stuart Memorial Professorship", "CURRENT HOLDER": "Johan van Benthem", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASAA7099237", + "Key": "H&SKASAA7099237", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Mary V. Sunseri Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "Persi Diaconis", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTAH9784901", + "Key": "H&SKJTAH9784901", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Patrick Suppes Professorship in Greek Mathematics and Astronomy", "CURRENT HOLDER": "Reviel Netz", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTAB9767450", + "Key": "H&SKJTAB9767450", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Patrick Suppes Professorship in Philosophy of Science", "CURRENT HOLDER": "Michael Friedman", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASBK2655330", + "Key": "H&SKASBK2655330", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Patrick Suppes Family Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "John W. Etchemendy", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKASCI9972985", + "Key": "H&SKASCI9972985", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Robert Eckles Swain Professorship in Chemistry", "CURRENT HOLDER": "Robert M. Waymouth", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAAN9861725", + "Key": "H&SKAAAN9861725", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ann and Bill Swindells Professorship", "CURRENT HOLDER": "Liqun Luo", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKJTAU0", + "Key": "H&SKJTAU0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Henri and Tomoye Takahashi Professorship in the School of Humanities and Sciences", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAVKC5226169", + "Key": "H&SKAVKC5226169", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Job and Gertrud Tamaki Professorship in Chemistry", "CURRENT HOLDER": "Bianxiao Cui", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBLBX9898073", + "Key": "H&SKBLBX9898073", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Trione Chairmanship of the Department of Economics", "CURRENT HOLDER": "B. Douglas Bernheim", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBLBY5583329", + "Key": "H&SKBLBY5583329", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Trione Faculty Scholar", "CURRENT HOLDER": "Isaac Sorkin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAWE9787284", + "Key": "H&SKBAWE9787284", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The James T. Watkins IV and Elise V. Watkins Professorship", "CURRENT HOLDER": "David D. Laitin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SNAARG5647103", + "Key": "H&SNAARG5647103", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Paul L. and Phyllis Wattis Professorship in Art", "CURRENT HOLDER": "Xiaoze Xie", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATML0", + "Key": "H&SKATML0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marta Sutton Weeks Faculty Scholar in the Humanities", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATML0", + "Key": "H&SKATML0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marta Sutton Weeks Faculty Scholar in the Humanities", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATML0", + "Key": "H&SKATML0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marta Sutton Weeks Faculty Scholar in the Humanities", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATMJ9970997", + "Key": "H&SKATMJ9970997", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marta Sutton Weeks Professorship in Ethics in Society", "CURRENT HOLDER": "Debra M. Satz", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATMJ0", + "Key": "H&SKATMJ0", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marta Sutton Weeks Professorship in Ethics in Society", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAXX9796533", + "Key": "H&SKBAXX9796533", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Richard Herschel Weiland Professorship", "CURRENT HOLDER": "Stephen H. Shenker", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBNKR10027654", + "Key": "H&SKBNKR10027654", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Wells Family Directorship of the Stanford Institute for Theoretical Physics", "CURRENT HOLDER": "Eva Silverstein", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAHT9824798", + "Key": "H&SKBAHT9824798", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Wendt Family Professorship", "CURRENT HOLDER": "Morris P. Fiorina", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATNO10038826", + "Key": "H&SKATNO10038826", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marguerite Blake Wilbur Professorship in Natural Science", "CURRENT HOLDER": "Philip H. Bucksbaum", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATNO9986597", + "Key": "H&SKATNO9986597", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Marguerite Blake Wilbur Professorship in Natural Science", "CURRENT HOLDER": "Richard N. Zare", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATMI9875931", + "Key": "H&SKATMI9875931", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ray Lyman Wilbur Professorship", "CURRENT HOLDER": "Giorgio Gratta", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAJTU9780065", + "Key": "H&SKAJTU9780065", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ray Lyman Wilbur Professorship II", "CURRENT HOLDER": "Luigi Pistaferri", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATMS9881822", + "Key": "H&SKATMS9881822", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Jean and Rebecca Willard Endowed Professorship in Classics", "CURRENT HOLDER": "Ian Morris", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBARI1332204", + "Key": "H&SKBARI1332204", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Burnet C. and Mildred Finley Wohlford Professorship", "CURRENT HOLDER": "Marcus W. Feldman", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBARI9867656", + "Key": "H&SKBARI9867656", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Burnet C. and Mildred Finley Wohlford Professorship", "CURRENT HOLDER": "C. Matthew Snipp", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKAAYW1510189", + "Key": "H&SKAAYW1510189", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Stanley G. Wojcicki Professorship", "CURRENT HOLDER": "Blas Cabrera", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAHX9832882", + "Key": "H&SKBAHX9832882", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ward W. and Priscilla B. Woods Professorship", "CURRENT HOLDER": "Alan Code", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBAHX50000290", + "Key": "H&SKBAHX50000290", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Ward W. and Priscilla B. Woods Professorship", "CURRENT HOLDER": "Chang-rae Lee", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATNJ3987112", + "Key": "H&SKATNJ3987112", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Holbrook Working Professorship in Price Theory", "CURRENT HOLDER": "Jonathan D. Levin", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKATNJ9941246", + "Key": "H&SKATNJ9941246", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The Holbrook Working Professorship in Price Theory", "CURRENT HOLDER": "Frank A. Wolak", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "H&SKBJTK35367895", + "Key": "H&SKBJTK35367895", "SUBCATEGORY": "SCHOOL OF HUMANITIES AND SCIENCES", "POSITION": "The WSD-HANDA Professorship in Human Rights and International Justice", "CURRENT HOLDER": "David Cohen", "WEBSITE": "http://humsci.stanford.edu" }, { - "KEY": "Earth SciencesKAAQU9944380", + "Key": "Earth SciencesKAAQU9944380", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Thomas Davies Barrow Professorship", "CURRENT HOLDER": "Roland N. Horne", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAQCR9864489", + "Key": "Earth SciencesKAQCR9864489", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Keleen and Carlton Beal Professorship", "CURRENT HOLDER": "Anthony R. Kovscek", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAQKD1946359", + "Key": "Earth SciencesKAQKD1946359", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Welton Joseph and Maud L’Anphere Crook Professorship", "CURRENT HOLDER": "Stephan A. Graham", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKEJCA0", + "Key": "Earth SciencesKEJCA0", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Steven and Roberta Denning Global Sustainability Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKBCML0", + "Key": "Earth SciencesKBCML0", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Steven and Roberta Denning Professorship in Global Governance for Sustainability", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKRSJE5570011", + "Key": "Earth SciencesKRSJE5570011", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Emmett Family Faculty Scholar", "CURRENT HOLDER": "Nicole M. Ardoin", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKARAE2652022", + "Key": "Earth SciencesKARAE2652022", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Cecil H. and Ida M. Green Professorship", "CURRENT HOLDER": "Paul Segall", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAUXR3082518", + "Key": "Earth SciencesKAUXR3082518", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The George L. Harrington Professorship", "CURRENT HOLDER": "Rosemary J. Knight", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAAUU9792870", + "Key": "Earth SciencesKAAUU9792870", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Terry Huffington Professorship", "CURRENT HOLDER": "Scott Fendorf", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKRSJH4125613", + "Key": "Earth SciencesKRSJH4125613", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Kara J Foundation Professorship", "CURRENT HOLDER": "Noah Diffenbaugh", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKARKT9852252", + "Key": "Earth SciencesKARKT9852252", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The W. M. Keck Professorship", "CURRENT HOLDER": "Robert B. Dunbar", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKARIT9702384", + "Key": "Earth SciencesKARIT9702384", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Dorrell William Kirby Professorship", "CURRENT HOLDER": "Jonathan Payne", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKEJRJ0", + "Key": "Earth SciencesKEJRJ0", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The L&S Family Professorship in Energy and Sustainability", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAVCI9957705", + "Key": "Earth SciencesKAVCI9957705", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Wayne Loel Professorship", "CURRENT HOLDER": "Gregory Beroza", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKARNY9844978", + "Key": "Earth SciencesKARNY9844978", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Otto N. Miller Professorship", "CURRENT HOLDER": "Louis Durlofsky", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKBAFS3565348", + "Key": "Earth SciencesKBAFS3565348", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Barney and Estelle Morris Professorship", "CURRENT HOLDER": "Biondo Biondi", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKBAFV5922629", + "Key": "Earth SciencesKBAFV5922629", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Chester Naramore Deanship", "CURRENT HOLDER": "Arun Majumdar", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKARSH5144732", + "Key": "Earth SciencesKARSH5144732", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Benjamin M. Page Professorship", "CURRENT HOLDER": "Dr. David Brian Lobell", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKARRE5709965", + "Key": "Earth SciencesKARRE5709965", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Victoria and Roger Sant Directorship of the Earth Systems Program", "CURRENT HOLDER": "Kabir Peay", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAVJL9785932", + "Key": "Earth SciencesKAVJL9785932", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Donald and Donald M. Steel Professorship", "CURRENT HOLDER": "Kevin R. Arrigo", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKBNKM3832763", + "Key": "Earth SciencesKBNKM3832763", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Max Steineke Professorship", "CURRENT HOLDER": "Hamdi Tchelepi", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAJTF9668255", + "Key": "Earth SciencesKAJTF9668255", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Sykes Family E-IPER Directorship", "CURRENT HOLDER": "Krish Seetah", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKAAPG2461853", + "Key": "Earth SciencesKAAPG2461853", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The Cyrus Fisher Tolman Professorship", "CURRENT HOLDER": "Steven M. Gorelick", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "Earth SciencesKCLKH3536125", + "Key": "Earth SciencesKCLKH3536125", "SUBCATEGORY": "STANFORD DOERR SCHOOL OF SUSTAINABILITY", "POSITION": "The William Wrigley Professorship", "CURRENT HOLDER": "Rosamond L. Naylor", "WEBSITE": "https://sustainability.stanford.edu/" }, { - "KEY": "LawKAQFO21739909", + "Key": "LawKAQFO21739909", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The William F. Baxter-VISA International Professorship in Law", "CURRENT HOLDER": "Curtis Milhaupt", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAWXQ1747328", + "Key": "LawKAWXQ1747328", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Charles A. Beardsley Professorship in Law", "CURRENT HOLDER": "James F. Strnad", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQES50002406", + "Key": "LawKAQES50002406", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Bernard Bergreen Faculty Scholar", "CURRENT HOLDER": "Colleen Honigsberg", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKABMZ0", + "Key": "LawKABMZ0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Paul Brest Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawNAASQ9876129", + "Key": "LawNAASQ9876129", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The C. Wendell and Edith M. Carlsmith Professorship at Stanford Law School", "CURRENT HOLDER": "John J. Donohue III", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBCOS0", + "Key": "LawKBCOS0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Gerhard Casper Professorship in the Rule of Law", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAWKU5400707", + "Key": "LawKAWKU5400707", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Warren Christopher Professorship in the Practice of International Law and Diplomacy", "CURRENT HOLDER": "Alan O. Sykes", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKCOLE3539731", + "Key": "LawKCOLE3539731", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Luke W. Cole Professorship in Environmental Law and Directorship of the Stanford Environmental Law Clinic", "CURRENT HOLDER": "Deborah A. Sivas", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQOP5519521", + "Key": "LawKAQOP5519521", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Helen L. Crocker Faculty Scholar", "CURRENT HOLDER": "Jud Campbell", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQOQ7153240", + "Key": "LawKAQOQ7153240", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Josephine Scott Crocker Professorship in Law and Economics", "CURRENT HOLDER": "A. Mitchell Polinsky", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQOL5400728", + "Key": "LawKAQOL5400728", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The William Nelson Cromwell Professorship in Law", "CURRENT HOLDER": "Jane Schacter", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQLG9888884", + "Key": "LawKAQLG9888884", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Judge John Crown Professorship in Law", "CURRENT HOLDER": "George L. Fisher", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAXED9823154", + "Key": "LawKAXED9823154", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Judge John W. Ford Professorship in Dispute Resolution", "CURRENT HOLDER": "Deborah R. Hensler", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQWV50019394", + "Key": "LawKAQWV50019394", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The William A. Franke Professorship in Law and Business", "CURRENT HOLDER": "Robert Bartlett", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKLAWZ8010647", + "Key": "LawKLAWZ8010647", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The James C. Gaither Professorship in Law", "CURRENT HOLDER": "Mark G. Kelman", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawNAAVS5328729", + "Key": "LawNAAVS5328729", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Edwin A. Heafey, Jr. Visiting Professorship", "CURRENT HOLDER": "Fred Smith", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBAOP2653160", + "Key": "LawKBAOP2653160", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Edwin E. Huddleson, Jr. Professorship in Law", "CURRENT HOLDER": "Robert Weisberg", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARJN0", + "Key": "LawKARJN0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Deane F. Johnson Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBCLE5161100", + "Key": "LawKBCLE5161100", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Deane F. Johnson Professorship in Law", "CURRENT HOLDER": "Lisa Ouellette", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKLAWC1729276", + "Key": "LawKLAWC1729276", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Deane F. and Kate Edelman Johnson Professorship in Law", "CURRENT HOLDER": "Henry T. Greely", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKLAWK5393291", + "Key": "LawKLAWK5393291", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Leah Kaplan Visiting Professorship in Human Rights", "CURRENT HOLDER": "E. Tendayi Achiume", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAAXP5358343", + "Key": "LawKAAXP5358343", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The James and Nancy Kelso Professorship", "CURRENT HOLDER": "Alison D. Morantz", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARIP6085202", + "Key": "LawKARIP6085202", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Marion Rice Kirkwood Professorship in Law", "CURRENT HOLDER": "Greg Ablavsky", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKOWAL5785271", + "Key": "LawKOWAL5785271", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The James and Patricia Kowal Professorship", "CURRENT HOLDER": "Robert J. MacCoun", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKCKML5851630", + "Key": "LawKCKML5851630", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Larry Kramer Professorship in Law", "CURRENT HOLDER": "Michelle Anderson", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAROQ0", + "Key": "LawKAROQ0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Richard E. Lang Professorship and Deanship at Stanford Law School", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKASFW9975905", + "Key": "LawKASFW9975905", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Stella W. & Ira S. Lillick Professorship", "CURRENT HOLDER": "Paul Goldstein", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBCLD4752077", + "Key": "LawKBCLD4752077", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The LSVF Professorship", "CURRENT HOLDER": "David Freeman Engstrom", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAXAT7807340", + "Key": "LawKAXAT7807340", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The A. Calder Mackay Professorship at Stanford Law School", "CURRENT HOLDER": "Robert L. Rabin", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKABUL9734211", + "Key": "LawKABUL9734211", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The M. Elizabeth Magill Professorship in Law", "CURRENT HOLDER": "Barbara van Schewick", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBANR5405514", + "Key": "LawKBANR5405514", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Richard and Frances Mallery Professorship in Law", "CURRENT HOLDER": "Michael W. McConnell", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKCLAW4409678", + "Key": "LawKCLAW4409678", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The James B. McClatchy Professorship", "CURRENT HOLDER": "Nathaniel A. Persily", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBANY4749651", + "Key": "LawKBANY4749651", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Ernest W. McFarland Professorship in Law", "CURRENT HOLDER": "Nora Freeman Engstrom", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARMJ0", + "Key": "LawKARMJ0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Charles J. Meyers Professorship in Law and Business", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBAVP5357139", + "Key": "LawKBAVP5357139", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Mills Law Directorship of Clinical Education", "CURRENT HOLDER": "Jayashri Srikantiah", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBCLG3987567", + "Key": "LawKBCLG3987567", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Bruce Tyson Mitchell Professorship", "CURRENT HOLDER": "Jennifer Chacón", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARLN9842352", + "Key": "LawKARLN9842352", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Kenneth & Harle Montgomery Professorship in Public Interest Law", "CURRENT HOLDER": "Pamela S. Karlan", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBAON5779614", + "Key": "LawKBAON5779614", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Stanley Morrison Professorship in Law", "CURRENT HOLDER": "David A. Sklansky", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAQCF9852237", + "Key": "LawKAQCF9852237", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Nancy and Charles Munger Professorship in Business at Stanford Law School", "CURRENT HOLDER": "Michael Klausner", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARRR3498318", + "Key": "LawKARRR3498318", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The William H. Neukom Professorship in Law", "CURRENT HOLDER": "Mark Lemley", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBAOM3494127", + "Key": "LawKBAOM3494127", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The George E. Osborne Professorship in Law", "CURRENT HOLDER": "Richard Thompson Ford", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAWZB0", + "Key": "LawKAWZB0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Robert E. Paradise Faculty Fellow for Excellence in Teaching and Research", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARRV1691880", + "Key": "LawKARRV1691880", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Robert E. Paradise Professorship in Natural Resources Law", "CURRENT HOLDER": "Barton H. Thompson", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAXAR7129075", + "Key": "LawKAXAR7129075", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Ralph M. Parsons Professorship in Law and Business", "CURRENT HOLDER": "Joseph Bankman", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawNAANM4072724", + "Key": "LawNAANM4072724", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Herman Phleger Visiting Professorship", "CURRENT HOLDER": "Joanna Lynn Grossman", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawNAANM0", + "Key": "LawNAANM0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Herman Phleger Visiting Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAAKD0", + "Key": "LawKAAKD0", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Pritzker Professorship in Law and Business", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKATDU3385770", + "Key": "LawKATDU3385770", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Jackson Eli Reynolds Professorship in Law", "CURRENT HOLDER": "R. Richard Banks", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawNAAOW9751520", + "Key": "LawNAAOW9751520", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Frederick I. Richman Professorship in Law", "CURRENT HOLDER": "Michele Landis Dauber", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBANP5351555", + "Key": "LawKBANP5351555", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Justin M. Roach, Jr. Faculty Scholar", "CURRENT HOLDER": "Rabia Belt", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBANN5111350", + "Key": "LawKBANN5111350", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The William W. and Gertrude H. Saunders Professorship in Law", "CURRENT HOLDER": "Shirin Sinnar", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAWXZ5404163", + "Key": "LawKAWXZ5404163", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Wm. Benjamin Scott and Luna M. Scott Professorship in Law", "CURRENT HOLDER": "Daniel E. Ho", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKARXI4288163", + "Key": "LawKARXI4288163", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Lewis Talbot and Nadine Hearn Shelton Professorship in International Legal Studies", "CURRENT HOLDER": "Amalia D. Kessler", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKABIB4664546", + "Key": "LawKABIB4664546", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Carl and Sheila Spaeth Professorship in Law", "CURRENT HOLDER": "Bernadette Meyler", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKASDS50010163", + "Key": "LawKASDS50010163", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Adelbert H. Sweet Professorship in Law", "CURRENT HOLDER": "Anne Joseph O’Connell", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKASDR4332615", + "Key": "LawKASDR4332615", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Nelson Bowman Sweitzer & Marie B. Sweitzer Professorship in Law", "CURRENT HOLDER": "Norman W. Spaulding", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKBANM50029809", + "Key": "LawKBANM50029809", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The John A. Wilson Distinguished Faculty Scholar", "CURRENT HOLDER": "Mila Sohoni", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "LawKAROB4366597", + "Key": "LawKAROB4366597", "SUBCATEGORY": "STANFORD LAW SCHOOL", "POSITION": "The Eric & Nancy Wright Professorship in Clinical Education", "CURRENT HOLDER": "William S. Koski", "WEBSITE": "http://law.stanford.edu/directory/?page=1&tax_and_terms=1067" }, { - "KEY": "MedicineKHABO9593229", + "Key": "MedicineKHABO9593229", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Deborah E. Addicott-John A. Kriewall and Elizabeth A. Haehl Family Professorship in Pediatrics", "CURRENT HOLDER": "Justin Baker", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAXK4563953", + "Key": "MedicineZBAXK4563953", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Additional Ventures Endowed Directorship for the Comprehensive Single Ventricle Program", "CURRENT HOLDER": "Sharon Chen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHACF3586641", + "Key": "MedicineKHACF3586641", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John R. Adler Professorship", "CURRENT HOLDER": "Eduardo J. Chichilnisky", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXJ9688944", + "Key": "MedicineKHAXJ9688944", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Alex and Susie Algard Endowed Professorship", "CURRENT HOLDER": "Justin Sonnenburg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBATY9614441", + "Key": "MedicineZBATY9614441", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Marc and Laura Andreessen Medical Directorship of Disaster Relief", "CURRENT HOLDER": "Meredith Masters", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATW9607113", + "Key": "MedicineKHATW9607113", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anesthesiology, Perioperative and Pain Medicine Professorship", "CURRENT HOLDER": "Brian T. Bateman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUNO218037267", + "Key": "MedicineKAUNO218037267", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anonymous Endowed Faculty Scholar in the Division of Child and Adolescent Psychiatry", "CURRENT HOLDER": "Cara Bohon", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQAR3361466", + "Key": "MedicineKAQAR3361466", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford W. Ascherman, MD, FACS Professorship in Genetics", "CURRENT HOLDER": "Michael Snyder", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWC0", + "Key": "MedicineKHAWC0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dr. Paul Auerbach Professorship in Emergency Medicine", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAMW9877739", + "Key": "MedicineZBAMW9877739", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Roma and Marvin Auerback Scholar in Pediatric Cardiology", "CURRENT HOLDER": "David Rosenthal", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHACC9920737", + "Key": "MedicineKHACC9920737", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Burt and Marion Avery Family Professorship", "CURRENT HOLDER": "Mark M. Davis", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQBG9767385", + "Key": "MedicineKAQBG9767385", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Catharine and Howard Avery Professorship in the School of Medicine", "CURRENT HOLDER": "Laura Attardi", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAZ9697831", + "Key": "MedicineKHAAZ9697831", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ballinger-Swindells Endowed Professorship in Developmental and Behavioral Pediatrics", "CURRENT HOLDER": "Heidi M. Feldman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAHY0", + "Key": "MedicineKHAHY0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ballinger-Swindells Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANB5351100", + "Key": "MedicineKHANB5351100", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Michele and Timothy Barakett Endowed Professorship", "CURRENT HOLDER": "Anne Brunet", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOE9660004", + "Key": "MedicineKHAOE9660004", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Timothy and Michele Barakett Endowed Faculty Scholar for Expanded Access", "CURRENT HOLDER": "Mary Prunicki", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUPK7130594", + "Key": "MedicineKAUPK7130594", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George DeForest Barnett Professorship in Medicine", "CURRENT HOLDER": "Julie Parsonnet", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUPL2590180", + "Key": "MedicineKAUPL2590180", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George DeForest Barnett Professorship II in Medicine", "CURRENT HOLDER": "Kelley M. Skeff", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUI9784406", + "Key": "MedicineKHAUI9784406", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George DeForest Barnett Professorship III in Medicine", "CURRENT HOLDER": "Neil Gesundheit", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQQ5280829", + "Key": "MedicineKHAQQ5280829", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ben Barres Professorship", "CURRENT HOLDER": "Tirin Moore", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJB9692618", + "Key": "MedicineKHAJB9692618", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anne T. and Robert M. Bass Faculty Scholar in Pediatric Cancer and Blood Diseases", "CURRENT HOLDER": "Kara Davis", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJB9682726", + "Key": "MedicineKHAJB9682726", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anne T. and Robert M. Bass Faculty Scholar in Pediatric Cancer and Blood Diseases", "CURRENT HOLDER": "Sushima Reddy", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJD8430886", + "Key": "MedicineKHAJD8430886", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anne T. and Robert M. Bass Faculty Scholar in Pediatric Cancer and Blood Diseases II", "CURRENT HOLDER": "Rosa Bacchetta", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAY2408938", + "Key": "MedicineKHAAY2408938", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anne T. and Robert M. Bass Professorship in Pediatric Cancer and Blood Diseases", "CURRENT HOLDER": "Kenneth Weinberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARVG5413297", + "Key": "MedicineKARVG5413297", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anne T. and Robert M. Bass Professorship in Pediatric Pulmonary Medicine", "CURRENT HOLDER": "David N. Cornfield", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOU3205283", + "Key": "MedicineKHAOU3205283", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Eugene and Gloria Bauer Professorship", "CURRENT HOLDER": "Anthony Oro", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUPU7425184", + "Key": "MedicineKAUPU7425184", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Donald E. and Delia B. Baxter Foundation Professorship", "CURRENT HOLDER": "Helen M. Blau", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPO4249264", + "Key": "MedicineZBAPO4249264", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Bechtel Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Kevin Wang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALN5357060", + "Key": "MedicineKHALN5357060", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Susan P. and Riley P. Bechtel Medical Directorship", "CURRENT HOLDER": "Jennifer Tremmel", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAES9704393", + "Key": "MedicineKAAES9704393", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George E. Becker Professorship in Medicine", "CURRENT HOLDER": "Beverly S. Mitchell", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQEZ9701251", + "Key": "MedicineKAQEZ9701251", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George E. and Lucy Becker Professorship in Medicine", "CURRENT HOLDER": "Frank M. Longo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVZ9674237", + "Key": "MedicineKHAVZ9674237", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George E. and Lucy Becker Professorship in Medicine II", "CURRENT HOLDER": "Catherine Blish", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAET5846289", + "Key": "MedicineKAAET5846289", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lucy Becker Professorship in Medicine", "CURRENT HOLDER": "Stephen Luby", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQCM9701757", + "Key": "MedicineKAQCM9701757", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Karel H. and Avice N. Beekhuis Professorship in Cancer Biology", "CURRENT HOLDER": "Michael F. Clarke", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAVY5357084", + "Key": "MedicineKBAVY5357084", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Richard E. Behrman, MD, Professorship in Child Health and Society", "CURRENT HOLDER": "Paul H. Wise", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEH3131794", + "Key": "MedicineKHAEH3131794", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Beirne Family Professorship in Pediatric Neuro-Oncology", "CURRENT HOLDER": "Paul G. Fisher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQHE7141229", + "Key": "MedicineKAQHE7141229", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Klaus Bensch Professorship in Pathology", "CURRENT HOLDER": "Eugene C. Butcher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPG9963653", + "Key": "MedicineKHAPG9963653", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Paul and Mildred Berg Professorship", "CURRENT HOLDER": "Mark Krasnow", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQCU9603495", + "Key": "MedicineKAQCU9603495", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Josephine Q. Berry Faculty Scholar in Cancer Research", "CURRENT HOLDER": "Steven Corsello", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQCS9877416", + "Key": "MedicineKAQCS9877416", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lowell W. and Josephine Q. Berry Professorship in the Department of Psychiatry and Behavioral Sciences", "CURRENT HOLDER": "Ruth O'Hara", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATN9609455", + "Key": "MedicineKHATN9609455", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Bertarelli Foundation Professorship", "CURRENT HOLDER": "Konstantina Stankovic", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQDT0", + "Key": "MedicineKAQDT0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Arthur L. Bloomfield Professorship in Medicine", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWB0", + "Key": "MedicineKHAWB0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Arthur L. Bloomfield Professorship of Medicine II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAKL5357338", + "Key": "MedicineKHAKL5357338", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John and Jene Blume-Robert and Ruth Halperin Professorship", "CURRENT HOLDER": "Jaimie M. Henderson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHABA4395877", + "Key": "MedicineKHABA4395877", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Blumenkranz Smead Professorship", "CURRENT HOLDER": "Jeffrey L. Goldberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPB2613222", + "Key": "MedicineKHAPB2613222", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Boswell Chair of Orthopaedics", "CURRENT HOLDER": "William J. Maloney", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAST50023932", + "Key": "MedicineKHAST50023932", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Botha Chan Endowed Professorship", "CURRENT HOLDER": "Cormac Maher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXP5378913", + "Key": "MedicineKHAXP5378913", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lawrence Bowman Family Fellow", "CURRENT HOLDER": "Grace Soon Kim", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAMG6253940", + "Key": "MedicineKHAMG6253940", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Bravo Family Faculty Scholar for Food Allergy and Immunology Research", "CURRENT HOLDER": "Xiaorui Han", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPP20396131", + "Key": "MedicineZBAPP20396131", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Sheri Sobrato Brisson Endowed Faculty Scholar in Pediatric Neuropsychology", "CURRENT HOLDER": "Joanna Wallace", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATG4341632", + "Key": "MedicineKHATG4341632", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The William R. Brody Professorship in Pediatric Radiology and Child Health", "CURRENT HOLDER": "Shreyas Vasanawala", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASS5231349", + "Key": "MedicineKHASS5231349", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Roger and Joelle Burnell Professorship in Genomics and Precision Health", "CURRENT HOLDER": "Euan Ashley", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAYQ9735465", + "Key": "MedicineKHAYQ9735465", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Byers Family Directorship", "CURRENT HOLDER": "Joshua Makower", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBADD9792755", + "Key": "MedicineKBADD9792755", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John E. Cahill Family Professorship", "CURRENT HOLDER": "Helen Bronte-Stewart", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQJW7124449", + "Key": "MedicineKAQJW7124449", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert W. and Vivian K. Cahill Professorship in Cancer Research", "CURRENT HOLDER": "Michael Levitt", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASI6001529", + "Key": "MedicineKHASI6001529", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The RZ Cao Professorship", "CURRENT HOLDER": "Christina Curtis", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALH6605955", + "Key": "MedicineKHALH6605955", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Carell Family Endowed Faculty Scholar for Food Allergy and Immunology Research", "CURRENT HOLDER": "Brit Wray", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPH9614888", + "Key": "MedicineKHAPH9614888", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Chambers Family Endowed Professorship for Pediatric Cancer", "CURRENT HOLDER": "Tanja Andrea Gruber", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASC5348051", + "Key": "MedicineKHASC5348051", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Elaine and John Chambers Endowed Professorship in Pediatric Cancer", "CURRENT HOLDER": "Julien Sage", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQM50010492", + "Key": "MedicineKHAQM50010492", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Chambers-Okamura Endowed Professorship in Pediatric Critical Care Medicine", "CURRENT HOLDER": "Timothy Cornell", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARX9621746", + "Key": "MedicineKHARX9621746", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Chambers-Okamura Endowed Professorship in Pediatric Gastroenterology", "CURRENT HOLDER": "Sohail Z. Husain", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQL50009322", + "Key": "MedicineKHAQL50009322", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Chambers-Okamura Endowed Professorship in Pediatric Orthopaedics", "CURRENT HOLDER": "Kevin Shea", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVI4863080", + "Key": "MedicineKHAVI4863080", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Chambers-Okamura Faculty Scholar in Pediatric Neurosurgery", "CURRENT HOLDER": "Laura Prolo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJK4146734", + "Key": "MedicineKHAJK4146734", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The D. H. Chen Professorship", "CURRENT HOLDER": "Karl A. Deisseroth", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQH5224384", + "Key": "MedicineKHAQH5224384", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The D. H. Chen Professorship II", "CURRENT HOLDER": "Tony Wyss-Coray", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVM4447645", + "Key": "MedicineKHAVM4447645", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Winston Chen and Phyllis Huang Professorship", "CURRENT HOLDER": "Heather Wakelee", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQJB9917717", + "Key": "MedicineKAQJB9917717", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dr. Walter C. Chidester Professorship", "CURRENT HOLDER": "Ronald L. Dalman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARQ3725207", + "Key": "MedicineKHARQ3725207", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Sutardja Chuk Professorship in Definitive and Curative Medicine", "CURRENT HOLDER": "Matthew Porteus", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALP0", + "Key": "MedicineKHALP0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Harvey J. Cohen, MD, PhD, Professorship in Pediatrics", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAURN0", + "Key": "MedicineKAURN0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Roy B. Cohn-Theodore A. Falasco Professorship in Cardiothoracic Surgery", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADM9692329", + "Key": "MedicineKHADM9692329", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Norman S. Coplon/Satellite Healthcare Professorship in Medicine", "CURRENT HOLDER": "Glenn M. Chertow", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHACG3847555", + "Key": "MedicineKHACG3847555", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Coyote Foundation Professorship", "CURRENT HOLDER": "Gregory W. Albers", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAJ5204155", + "Key": "MedicineKHAAJ5204155", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Crandall Endowed Faculty Scholar in Pediatric Pulmonary Medicine", "CURRENT HOLDER": "Cristina Alvira", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAO9721226", + "Key": "MedicineKHAAO9721226", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lawrence Crowley, MD, Endowed Professorship in Child Health", "CURRENT HOLDER": "Frank Hanley", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAMJ3720513", + "Key": "MedicineKHAMJ3720513", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Maureen Lyles D’Ambrogio Professorship", "CURRENT HOLDER": "Calvin J. Kuo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUSE9969007", + "Key": "MedicineKAUSE9969007", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Maureen Lyles D’Ambrogio Professorship in the School of Medicine", "CURRENT HOLDER": "Lawrence L. K. Leung", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXQ20881066", + "Key": "MedicineKHAXQ20881066", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ben Davenport and Lucy Zhang Professorship in Medicine", "CURRENT HOLDER": "Eleni Linos", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAGT5351343", + "Key": "MedicineZBAGT5351343", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Davies Family Directorship of Pediatric Emergency Medicine", "CURRENT HOLDER": "Bernard Dannenberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAME9969098", + "Key": "MedicineKHAME9969098", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Department of Genetics Flow Cytometry Professorship", "CURRENT HOLDER": "Leonore A. Herzenberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPT5664858", + "Key": "MedicineKHAPT5664858", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anthony DiGenova Endowed Faculty Scholar", "CURRENT HOLDER": "Kyle Loh", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPU0", + "Key": "MedicineKHAPU0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Anthony DiGenova Endowed Faculty Scholar II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUSX9978190", + "Key": "MedicineKAUSX9978190", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thelma and Henry Doelger Professorship in Cardiovascular Surgery", "CURRENT HOLDER": "Michael Fischbein", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEB4073904", + "Key": "MedicineKHAEB4073904", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thelma and Henry Doelger Professorship in Cardiovascular Surgery II", "CURRENT HOLDER": "Leah Backhus", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEC0", + "Key": "MedicineKHAEC0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thelma and Henry Doelger Professorship in Cardiovascular Surgery III", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUXo", + "Key": "MedicineKHAUXo", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thelma and Henry Doelger Professorship in Cardiovascular Surgery IV", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAMA9692526", + "Key": "MedicineZBAMA9692526", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ann and John Doerr Medical Directorship of the Stanford Cancer Center", "CURRENT HOLDER": "Rondeep Brar", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQNX9771627", + "Key": "MedicineKAQNX9771627", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ronald F. Dorfman, MBBch, FRCPath Professorship in Hematopathology", "CURRENT HOLDER": "Yasodha Natkunam", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAEY21572482", + "Key": "MedicineZBAEY21572482", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Charles L. Dostal Jr. Chaplaincy at Lucile Packard Children’s Hospital", "CURRENT HOLDER": "Diana Brady", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAXG4180931", + "Key": "MedicineKBAXG4180931", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The James R. Doty Professorship in Neurosurgery and Neurosciences", "CURRENT HOLDER": "Ivan Soltesz", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVKY9823592", + "Key": "MedicineKAVKY9823592", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dunlevie Family Professorship in Pulmonary Vascular Disease", "CURRENT HOLDER": "Jeffrey A. Feinstein", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVLC5201548", + "Key": "MedicineKAVLC5201548", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dwight and Vera Dunlevie Professorship in Pediatric Cardiology", "CURRENT HOLDER": "Marlene Rabinovitch", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALL6077793", + "Key": "MedicineKHALL6077793", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Elizabeth Wood Dunlevie Professorship", "CURRENT HOLDER": "Dennis Lund", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATE3688132", + "Key": "MedicineKHATE3688132", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dunlevie Endowed Professorship in Maternal Fetal Medicine", "CURRENT HOLDER": "Deirdre J. Lyell", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAXY5078396", + "Key": "MedicineKBAXY5078396", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert L. and Mary Ellenburg Endowed Faculty Scholar", "CURRENT HOLDER": "Anusha Kalbasi", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBASR7087760", + "Key": "MedicineKBASR7087760", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert L. and Mary Ellenburg Professorship in Surgery", "CURRENT HOLDER": "Stuart B. Goodman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHABS9641051", + "Key": "MedicineKHABS9641051", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert L. and Mary Ellenburg Professorship in Surgery II", "CURRENT HOLDER": "Arden Morris", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQTD9973397", + "Key": "MedicineKAQTD9973397", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Elsbach-Richards Professorship in Surgery", "CURRENT HOLDER": "Amy Ladd", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAGD9890690", + "Key": "MedicineZBAGD9890690", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Directorship of Family Centered Care", "CURRENT HOLDER": "Karen Wayman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBBDH4009320", + "Key": "MedicineZBBDH4009320", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Directorship of the Center for Advanced Pediatric and Perinatal Education", "CURRENT HOLDER": "Lou Halamek", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBBBL100009725", + "Key": "MedicineZBBBL100009725", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Medical Directorship of Pediatric Celiac Disease", "CURRENT HOLDER": "Hilary Jericho", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAGK9914193", + "Key": "MedicineZBAGK9914193", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Directorship of Pediatric Imaging", "CURRENT HOLDER": "Richard A. Barth", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBBBL9593672", + "Key": "MedicineZBBBL9593672", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Medical Directorship of Pediatric Inflammatory Bowel Disease", "CURRENT HOLDER": "Jonathan Moses", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBBBK9605203", + "Key": "MedicineZBBBK9605203", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Directorship for the Stanford Medicine Children's Health Center for Inflammatory Bowel Disease and Celiac Disease", "CURRENT HOLDER": "Michael J. Rosen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVLA9963653", + "Key": "MedicineKAVLA9963653", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Executive Directorship of the Vera Moulton Wall Center", "CURRENT HOLDER": "Mark Krasnow", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUUE1502996", + "Key": "MedicineKAUUE1502996", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Harold K. Faber Professorship in Pediatrics", "CURRENT HOLDER": "David K. Stevenson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAABC9930140", + "Key": "MedicineKAABC9930140", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Hélène Irwin Fagan Chair in Cardiology", "CURRENT HOLDER": "Brian K. Kobilka", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOX50005067", + "Key": "MedicineKHAOX50005067", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Fairweather Foundation Professorship", "CURRENT HOLDER": "Geoffrey C. Tabin", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUUR9842758", + "Key": "MedicineKAUUR9842758", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dennis Farrey Family Professorship in Pediatrics", "CURRENT HOLDER": "Mark A. Kay", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATL4865275", + "Key": "MedicineKHATL4865275", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Iqbal Farrukh and Asad Jamal Professorship", "CURRENT HOLDER": "Michael Greicius", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOC9700429", + "Key": "MedicineZBAOC9700429", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Carl Feinstein Directorship of Child and Adolescent Psychiatry at Lucile Packard Children’s Hospital", "CURRENT HOLDER": "Antonio Hardan", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAEU217952136", + "Key": "MedicineZBAEU217952136", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Susan B. Ford Surgeon-in-Chief at Lucile Packard Children’s Hospital", "CURRENT HOLDER": "Karthik Balakrishnan", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUVM9672660", + "Key": "MedicineKAUVM9672660", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Shelagh Galligan Professorship in the School of Medicine", "CURRENT HOLDER": "Kathleen M. Sakamoto", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVC0", + "Key": "MedicineKHAVC0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Shelagh Galligan Professorship in the School of Medicine II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHACL3148459", + "Key": "MedicineKHACL3148459", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ernest and Amelia Gallo Professorship", "CURRENT HOLDER": "Philip A. Beachy", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPX6086022", + "Key": "MedicineKHAPX6086022", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Ernest and Amelia Gallo Family Professorship", "CURRENT HOLDER": "Crystal Mackall", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXW4644944", + "Key": "MedicineKHAXW4644944", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Milan Gambhir Professorship in Pediatric Neuro-Oncology", "CURRENT HOLDER": "Michelle Monje", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASF20777389", + "Key": "MedicineKHASF20777389", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Sanjiv Sam Gambhir Professorship in Translational Medicine", "CURRENT HOLDER": "Joseph M. DeSimone", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALQ50004926", + "Key": "MedicineKHALQ50004926", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Gies Foundation Endowed Fellow/Faculty Scholar for Food Allergy and Immunology Research", "CURRENT HOLDER": "Sayantani “Tina” Sindher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANA9763004", + "Key": "MedicineKHANA9763004", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jerome and Daisy Low Gilbert Professorship", "CURRENT HOLDER": "Steven E. Artandi", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQAY9689727", + "Key": "MedicineKAQAY9689727", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Avram Goldstein Professorship in the School of Medicine", "CURRENT HOLDER": "Thomas C. Südhof", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAUWR9590611", + "Key": "MedicineKAUWR9590611", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Joseph D. Grant Professorship", "CURRENT HOLDER": "Antonio Omuro", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUJ4501516", + "Key": "MedicineKHAUJ4501516", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Joseph D. Grant Professorship II", "CURRENT HOLDER": "Jeffrey S. Glenn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAIE25366204", + "Key": "MedicineKHAIE25366204", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The David L. Gregg, MD, Professorship", "CURRENT HOLDER": "Syed Morad Hameed", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUG0", + "Key": "MedicineKHAUG0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dr. Ellie Guardino Endowed Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAEA3934072", + "Key": "MedicineKBAEA3934072", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Berthold and Belle N. Guggenhime Professorship", "CURRENT HOLDER": "Anne Villeneuve", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARL9788431", + "Key": "MedicineKHARL9788431", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Berthold and Belle N. Guggenhime Professorship II", "CURRENT HOLDER": "Jennifer Raymond", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBANB9639405", + "Key": "MedicineZBANB9639405", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John A. & Cynthia Fry Gunn Endowed Directorship of Pediatric Surgical Services", "CURRENT HOLDER": "James Dunn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOP5452968", + "Key": "MedicineKHAOP5452968", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The H&H Evergreen Foundation Endowed Faculty Scholar in Maternal-Fetal Medicine", "CURRENT HOLDER": "Yair Blumenfeld", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOP5996134", + "Key": "MedicineKHAOP5996134", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The H&H Evergreen Foundation Endowed Faculty Scholar in Maternal-Fetal Medicine", "CURRENT HOLDER": "Virginia D. Winn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAIF1912948", + "Key": "MedicineKHAIF1912948", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Colleen Haas Chair in the School of Medicine", "CURRENT HOLDER": "George A. Fisher, Jr.", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHABZ3165305", + "Key": "MedicineKHABZ3165305", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Joanne and Peter Haas, Jr., Professorship for Cutaneous Lymphoma Research", "CURRENT HOLDER": "Youn H. Kim", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADQ9860511", + "Key": "MedicineKHADQ9860511", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jacob Haimson and Sarah S. Donaldson Professorship", "CURRENT HOLDER": "Lei Xing", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQX50004345", + "Key": "MedicineKHAQX50004345", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Christina M. U. Hamilton Scholar", "CURRENT HOLDER": "Katja Weinacht", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAFF3983376", + "Key": "MedicineZBAFF3983376", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Arline and Pete Harman Faculty Scholar", "CURRENT HOLDER": "Valerie Yuk Lan Chock", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQZM3523370", + "Key": "MedicineKAQZM3523370", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Arline and Pete Harman Professorship for the Chair of the Department of Pediatrics", "CURRENT HOLDER": "Mary B. Leonard", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARAU3444908", + "Key": "MedicineKARAU3444908", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Rachford and Carlota A. Harris Professorship", "CURRENT HOLDER": "Garry Nolan", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJQ3456555", + "Key": "MedicineKHAJQ3456555", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The David and Susan Heckerman Professorship", "CURRENT HOLDER": "Abby C. King", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARBQ3134657", + "Key": "MedicineKARBQ3134657", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Carl J. Herzog Professorship in Dermatology in the School of Medicine", "CURRENT HOLDER": "Paul A. Khavari", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAV9857731", + "Key": "MedicineKHAAV9857731", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert L. Hess Endowed Professorship in Pediatrics", "CURRENT HOLDER": "Jeffrey B. Gould", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALM3391000", + "Key": "MedicineKHALM3391000", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert L. Hess Family Professorship", "CURRENT HOLDER": "Susan R. Hintz", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJJ0", + "Key": "MedicineKHAJJ0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Rosemarie Hess Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOR9674499", + "Key": "MedicineKHAOR9674499", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Betty Higgins Family Foundation Directorship", "CURRENT HOLDER": "Robert Cowan", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUU9704107", + "Key": "MedicineKHAUU9704107", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Cortlandt T. Hill Memorial Scholar", "CURRENT HOLDER": "Geoffrey Sonn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARNR9651388", + "Key": "MedicineKARNR9651388", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Emile Holman Professorship in Surgery", "CURRENT HOLDER": "Mary Hawn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVB0", + "Key": "MedicineKHAVB0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Emile Holman Professorship in Surgery II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALG9870015", + "Key": "MedicineKHALG9870015", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Violetta L. Horton Professorship", "CURRENT HOLDER": "Karla Kirkegaard", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOI50003162", + "Key": "MedicineKHAOI50003162", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Violetta L. Horton Professorship II", "CURRENT HOLDER": "Bali Pulendran", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARES3570660", + "Key": "MedicineKARES3570660", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The William M. Hume Professorship in the School of Medicine", "CURRENT HOLDER": "Sylvia Plevritis", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAIS5781980", + "Key": "MedicineKHAIS5781980", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Susy Yuan-Huey Hung Professorship", "CURRENT HOLDER": "Mark D. Pegram", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADE3343928", + "Key": "MedicineKHADE3343928", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Keith and Jan Hurlbut Professorship", "CURRENT HOLDER": "James D. Brooks", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANE5779541", + "Key": "MedicineKHANE5779541", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Institute for Stem Cell Biology and Regenerative Medicine Faculty Scholar", "CURRENT HOLDER": "Aaron Newman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAREV9852641", + "Key": "MedicineKAREV9852641", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The William G. Irwin Professorship in Cardiovascular Medicine", "CURRENT HOLDER": "Thomas Quertermous", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARD5278921", + "Key": "MedicineKHARD5278921", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jauch Professorship", "CURRENT HOLDER": "James Chen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARE9855271", + "Key": "MedicineKHARE9855271", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jauch Professorship II", "CURRENT HOLDER": "Joseph Puglisi", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAMJ3523370", + "Key": "MedicineZBAMJ3523370", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Adalyn Jay Physician-in-Chief at Lucile Packard Children’s Hospital", "CURRENT HOLDER": "Mary B. Leonard", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAEO4352308", + "Key": "MedicineKBAEO4352308", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Charles B. and Ann L. Johnson Professorship in the School of Medicine", "CURRENT HOLDER": "Yasser Yehia El-Sayed", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARHY3387172", + "Key": "MedicineKARHY3387172", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Johnson & Johnson Professorship in Surgery", "CURRENT HOLDER": "James Chang, Jr.", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAKM4430682", + "Key": "MedicineKHAKM4430682", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Johnson & Johnson Distinguished Professorship in Surgery II", "CURRENT HOLDER": "Derrick Wan", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUW9877283", + "Key": "MedicineKHAUW9877283", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Johnson & Johnson Professorship in Surgery III", "CURRENT HOLDER": "Olivia Martinez", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARJO2513026", + "Key": "MedicineKARJO2513026", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Henry J. Kaiser, Jr. Professorship", "CURRENT HOLDER": "Douglas K. Owens", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUK5404714", + "Key": "MedicineKHAUK5404714", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Henry J. Kaiser, Jr. Professorship II", "CURRENT HOLDER": "Norman Grant Miller", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVAE7140072", + "Key": "MedicineKAVAE7140072", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Henry S. Kaplan-Harry Lebeson Professorship in Cancer Biology", "CURRENT HOLDER": "Richard T. Hoppe", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARJY7422355", + "Key": "MedicineKARJY7422355", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Richard L. Kempson, MD, Professorship in Surgical Pathology", "CURRENT HOLDER": "Gerald Berry", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineNAAAU9593995", + "Key": "MedicineNAAAU9593995", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Marron and Mary Elizabeth Kendrick Professorship in Pediatrics", "CURRENT HOLDER": "Jonathan Klein", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWA9660101", + "Key": "MedicineKHAWA9660101", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Marron and Mary Elizabeth Kendrick Professorship in Pediatrics II", "CURRENT HOLDER": "Bonnie Halpern-Felsher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANV5512871", + "Key": "MedicineKHANV5512871", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Carol and Doug Kimmelman Faculty Scholar", "CURRENT HOLDER": "Erinn Rankin", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUF0", + "Key": "MedicineKHAUF0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Carol and Doug Kimmelman Faculty Scholar II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHABF3699659", + "Key": "MedicineKHABF3699659", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Sabine Kohler, MD, Professorship in Pathology", "CURRENT HOLDER": "Matt van de Rijn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHABG9920745", + "Key": "MedicineKHABG9920745", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The David Korn, MD, Professorship in Pathology", "CURRENT HOLDER": "Gerald A. Crabtree", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAFI9590234", + "Key": "MedicineZBAFI9590234", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John A. Kriewall and Elizabeth A. Haehl Directorship of Pediatric Palliative Care", "CURRENT HOLDER": "Alexis Morvant", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAIJ5638465", + "Key": "MedicineKHAIJ5638465", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The C.R. Krishnamurthi Faculty Scholar", "CURRENT HOLDER": "Sydney Lu", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAMD4549911", + "Key": "MedicineKHAMD4549911", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thomas Krummel Professorship", "CURRENT HOLDER": "Carla Pugh", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANT9763004", + "Key": "MedicineKHANT9763004", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Laurie Kraus Lacob Directorship of the Stanford Cancer Institute", "CURRENT HOLDER": "Steven E. Artandi", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPM4807277", + "Key": "MedicineZBAPM4807277", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Laurie Kraus Lacob Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Danton Char", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPM20939245", + "Key": "MedicineZBAPM20939245", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Laurie Kraus Lacob Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Yang Sun", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAHM5418304", + "Key": "MedicineKHAHM5418304", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Laurie Kraus Lacob Professorship", "CURRENT HOLDER": "Jonathan S. Berek", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXR3725207", + "Key": "MedicineKHAXR3725207", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Laurie Kraus Lacob Research Directorship", "CURRENT HOLDER": "Matthew Porteus", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAFB2406619", + "Key": "MedicineKBAFB2406619", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Bernard and Ronni Lacroute-William Randolph Hearst Professorship in Neurosurgery and Neurosciences", "CURRENT HOLDER": "Gary K. Steinberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARKE5356879", + "Key": "MedicineKARKE5356879", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Esther Ehrman Lazard Faculty Scholar", "CURRENT HOLDER": "Maya Kumar", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARKE50019586", + "Key": "MedicineKARKE50019586", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Esther Ehrman Lazard Faculty Scholar", "CURRENT HOLDER": "Hawa Racine Thiam", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUS4444535", + "Key": "MedicineKHAUS4444535", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The LCY: Tan Lan Lee Professorship", "CURRENT HOLDER": "C. Jason Wang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAVB1736040", + "Key": "MedicineKBAVB1736040", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lydia J. Lee Professorship in Pediatric Oncology", "CURRENT HOLDER": "Michael P. Link", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVBZ4620100", + "Key": "MedicineKAVBZ4620100", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Douglass M. and Nola Leishman Professorship in Cardiovascular Disease", "CURRENT HOLDER": "Alison Marsden", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUL9629834", + "Key": "MedicineKHAUL9629834", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Douglass M. and Nola Leishman Professorship II in Cardiovascular Diseases", "CURRENT HOLDER": "Ronglih Liao", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATO9901760", + "Key": "MedicineKHATO9901760", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John and Terry Levin Family Professorship in Medicine", "CURRENT HOLDER": "Jose R. Maldonado", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHABN9899915", + "Key": "MedicineKHABN9899915", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Li Ka Shing Professorship in Cardiology", "CURRENT HOLDER": "Alan C. Yeung", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANH5773698", + "Key": "MedicineKHANH5773698", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Kim and Ping Li Directorship in Computational Biology", "CURRENT HOLDER": "Sandra Andorf", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUT5646031", + "Key": "MedicineKHAUT5646031", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Kim and Ping Li Professorship", "CURRENT HOLDER": "Manisha Desai", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKASGH7058290", + "Key": "MedicineKASGH7058290", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Kwoh-Ting Li Professorship in the School of Medicine", "CURRENT HOLDER": "Stanley N. Cohen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBANL23346935", + "Key": "MedicineZBANL23346935", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lillie Family Endowed Directorship of the President and CEO of Lucile Packard Children’s Hospital", "CURRENT HOLDER": "Paul King", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAROV9600705", + "Key": "MedicineKAROV9600705", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lindhard Family Professorship in Pediatric Cancer Biology", "CURRENT HOLDER": "Raya Saab", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASA9920471", + "Key": "MedicineKHASA9920471", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Marc and Jennifer Lipschultz Directorship of the Stanford Innovative Medicines Accelerator", "CURRENT HOLDER": "Chaitan Khosla", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQG5054647", + "Key": "MedicineKHAQG5054647", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lorry I. Lokey Endowed Faculty Scholar", "CURRENT HOLDER": "Agnieszka Czechowicz", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQI9698554", + "Key": "MedicineKHAQI9698554", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lorry Lokey Professorship", "CURRENT HOLDER": "Joanna Wysocka", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQY9629763", + "Key": "MedicineKHAQY9629763", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lorry I. Lokey Professorship", "CURRENT HOLDER": "Alice Bertaina", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATNX9791773", + "Key": "MedicineKATNX9791773", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mary Hewitt Loveless, MD, Professorship in the School of Medicine", "CURRENT HOLDER": "Stephen J. Galli", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVCO9707890", + "Key": "MedicineKAVCO9707890", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Virginia and D.K. Ludwig Professorship", "CURRENT HOLDER": "Ravi Majeti", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALE3039369", + "Key": "MedicineKHALE3039369", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Virginia and D.K. Ludwig Professorship in Biochemistry", "CURRENT HOLDER": "Peter S. Kim", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEK4309605", + "Key": "MedicineKHAEK4309605", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Virginia and D.K. Ludwig Professorship in Cancer Research", "CURRENT HOLDER": "Howard Y. Chang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVCP1131242", + "Key": "MedicineKAVCP1131242", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Virginia and D.K. Ludwig Professorship in Clinical Investigation in Cancer Research", "CURRENT HOLDER": "Irving L. Weissman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAIW9920711", + "Key": "MedicineKHAIW9920711", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Virginia and Daniel K. Ludwig Professorship in Cancer Research", "CURRENT HOLDER": "Roeland Nusse", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAJC9891110", + "Key": "MedicineKAAJC9891110", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lui Hac Minh Professorship in the School of Medicine", "CURRENT HOLDER": "Samuel K. S. So", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAHV3128782", + "Key": "MedicineKHAHV3128782", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Larry and Sharon Malcolmson Professorship", "CURRENT HOLDER": "Nikolas H. Blevins", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAMH9597892", + "Key": "MedicineKHAMH9597892", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Michael F. Marmor, MD, Professorship in Retinal Science and Disease", "CURRENT HOLDER": "Mary Elizabeth Hartnett", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALI0", + "Key": "MedicineKHALI0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Sue and Bob McCollum Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKASZW9680226", + "Key": "MedicineKASZW9680226", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Katharine Dexter McCormick and Stanley McCormick Memorial Professorship", "CURRENT HOLDER": "Laura Roberts", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEV3687514", + "Key": "MedicineKHAEV3687514", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Katharine Dexter McCormick and Stanley McCormick Memorial Professorship II", "CURRENT HOLDER": "Quynh-Thu Le", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOJ3669926", + "Key": "MedicineKHAOJ3669926", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Katharine Dexter McCormick and Stanley McCormick Memorial Professorship III", "CURRENT HOLDER": "Leslee L. Subak", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVY9971490", + "Key": "MedicineKHAVY9971490", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Katharine Dexter McCormick and Stanley McCormick Memorial Professorship IV", "CURRENT HOLDER": "Margaret Fuller", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATBL2664472", + "Key": "MedicineKATBL2664472", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanley McCormick Memorial Professorship", "CURRENT HOLDER": "Linda M. Boxer", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADF3694684", + "Key": "MedicineKHADF3694684", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thomas C. and Joan M. Merigan Professorship", "CURRENT HOLDER": "David A. Relman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAHA9771015", + "Key": "MedicineKAAHA9771015", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Deane P. and Louise Mitchell Professorship in the School of Medicine", "CURRENT HOLDER": "Michael T. Longaker", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAYB5348446", + "Key": "MedicineKHAYB5348446", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Christina and Hamid Moghadam Faculty Scholar", "CURRENT HOLDER": "Vivek Buch", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATZ4309480", + "Key": "MedicineKHATZ4309480", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Moghadam Family Professorship", "CURRENT HOLDER": "Ash A. Alizadeh", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVE5201548", + "Key": "MedicineKHAVE5201548", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Betty Irene Moore Basic Science and Engineering Initiative Endowed Research Directorship", "CURRENT HOLDER": "Marlene Rabinovitch", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOB9904509", + "Key": "MedicineZBAOB9904509", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Betty Irene Moore Directorship for Cardiac Anesthesia", "CURRENT HOLDER": "M. Gail Boltz", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOK6082448", + "Key": "MedicineZBAOK6082448", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Tashia and John Morgridge Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Elizabeth Egan", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOK20491692", + "Key": "MedicineZBAOK20491692", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Tashia and John Morgridge Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Anupama Narla", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOK5375746", + "Key": "MedicineZBAOK5375746", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Tashia and John Morgridge Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Manish Saggar", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOK5852143", + "Key": "MedicineZBAOK5852143", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Tashia and John Morgridge Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Peter Luke Santa Maria", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOK5856691", + "Key": "MedicineZBAOK5856691", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Tashia and John Morgridge Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Suzanne Tharin", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAOK20945242", + "Key": "MedicineZBAOK20945242", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Tashia and John Morgridge Endowed Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Keith Van Haren", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVV2096584", + "Key": "MedicineKHAVV2096584", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The KM Mulberry Professorship", "CURRENT HOLDER": "Seung Kim", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARPQ99993552", + "Key": "MedicineKARPQ99993552", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Rudy J. and Daphne Donohue Munzer Professorship in the School of Medicine", "CURRENT HOLDER": "David M. Kingsley", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQU5999981", + "Key": "MedicineKHAQU5999981", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mylavarapu Rogers Professorship in Cardiothoracic Surgery", "CURRENT HOLDER": "Mark Berry", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBBAY0", + "Key": "MedicineZBBAY0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Naddisy Foundation Directorship for Precision Medicine in Allergy", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARI9858267", + "Key": "MedicineKHARI9858267", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Naddisy Foundation Professorship in Pediatric Food Allergy, Immunology, and Asthma", "CURRENT HOLDER": "David B. Lewis", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVEZ9666965", + "Key": "MedicineKAVEZ9666965", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Carl and Elizabeth Naumann Professorship for the Dean of the School of Medicine", "CURRENT HOLDER": "Lloyd B. Minor", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHACK9916552", + "Key": "MedicineKHACK9916552", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Allan and Tina Neill Professorship in Lymphatic Research and Medicine", "CURRENT HOLDER": "Stanley G. Rockson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAKY4357554", + "Key": "MedicineKHAKY4357554", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Rachael L. and Walter F. Nichols, MD, Professorship", "CURRENT HOLDER": "Vinod Menon", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARRH4118295", + "Key": "MedicineKARRH4118295", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Walter E. Nichols, MD, Professorship in the School of Medicine", "CURRENT HOLDER": "Cheryl Gore-Felton", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPD5594564", + "Key": "MedicineKHAPD5594564", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The NICU Nurses Professorship", "CURRENT HOLDER": "Gary M. Shaw", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARSP99994550", + "Key": "MedicineKARSP99994550", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Kenneth T. Norris, Jr. Professorship in Psychiatry and Behavioral Sciences", "CURRENT HOLDER": "Alan F. Schatzberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWD5573932", + "Key": "MedicineKHAWD5573932", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Kenneth T. Norris, Jr. Professorship II of Psychiatry and Behavioral Sciences", "CURRENT HOLDER": "Sergiu P. Pasca", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJA4049656", + "Key": "MedicineKHAJA4049656", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Harry A. Oberhelman, Jr., and Mark L. Welton Professorship", "CURRENT HOLDER": "Electron Kebebew", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAR0", + "Key": "MedicineKHAAR0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lucile Packard Children’s Hospital Professorship in Pediatric Neurosurgery", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAEL0", + "Key": "MedicineZBAEL0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lucile Packard Directorship of Pediatric Cardiothoracic Surgery", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAGH4126355", + "Key": "MedicineKHAGH4126355", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lucile Packard Foundation for Children’s Health Faculty Scholar", "CURRENT HOLDER": "David Hong", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAGH50002152", + "Key": "MedicineKHAGH50002152", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lucile Packard Foundation for Children’s Health Faculty Scholar", "CURRENT HOLDER": "Jiangbin Ye", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVFM50002226", + "Key": "MedicineKAVFM50002226", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lucile Salter Packard Professorship in Pediatrics", "CURRENT HOLDER": "David Maahs", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVFT4051785", + "Key": "MedicineKAVFT4051785", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Paralyzed Veterans of America Professorship in Spinal Cord Injury Medicine", "CURRENT HOLDER": "Odette Harris", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUM0", + "Key": "MedicineKHAUM0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Paralyzed Veterans of America Professorship of Spinal Cord Injury Medicine II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHALX5778717", + "Key": "MedicineKHALX5778717", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Sean N. Parker Center for Allergy Research Faculty Scholar", "CURRENT HOLDER": "Maya Kasowski", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATQ9877747", + "Key": "MedicineKHATQ9877747", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Endowed Professorship in Pediatric Cardiology", "CURRENT HOLDER": "Anne Dubin", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATA7770746", + "Key": "MedicineKHATA7770746", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Pediatric Hematology/Oncology Endowed Professorship", "CURRENT HOLDER": "Bertil Glader", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARMW9950510", + "Key": "MedicineKARMW9950510", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Emma Pfeiffer Merner Professorship in Medical Sciences", "CURRENT HOLDER": "Suzanne Pfeffer", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWU5328919", + "Key": "MedicineKHAWU5328919", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Pfeiffer and Herold Families Professorship", "CURRENT HOLDER": "Aaron F. Straight", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARUY2961415", + "Key": "MedicineKARUY2961415", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward F. and Irene Thiele Pimley Professorship in Neurology and Neurological Sciences", "CURRENT HOLDER": "Katrin Andreasson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVW5619369", + "Key": "MedicineKHAVW5619369", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward F. and Irene Thiele Pimley Professorship II in Neurology and the Neurological Sciences", "CURRENT HOLDER": "Kathleen Poston", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJL9664906", + "Key": "MedicineKHAJL9664906", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mary Lake Polan Professorship", "CURRENT HOLDER": "Oliver Dorigo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADL3656014", + "Key": "MedicineKHADL3656014", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert C. and Jeannette Powell Neurosciences Professorship", "CURRENT HOLDER": "Steven D. Chang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARVB2986354", + "Key": "MedicineKARVB2986354", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Nancy Friend Pritzker Professorship in Psychiatry and the Behavioral Sciences", "CURRENT HOLDER": "Robert C. Malenka", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVGQ3537388", + "Key": "MedicineKAVGQ3537388", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thomas A. Raffin Professorship in Medicine and Biomedical Ethics", "CURRENT HOLDER": "David C. Magnus", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAIZ3602828", + "Key": "MedicineKHAIZ3602828", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The James W. Raitt, MD, Professorship", "CURRENT HOLDER": "William H. Robinson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAGR0", + "Key": "MedicineKAAGR0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Gerald M. Reaven, MD, Professorship in Endocrinology", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEM4675948", + "Key": "MedicineKHAEM4675948", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Redlich Professorship", "CURRENT HOLDER": "Sean Mackey", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEN9625772", + "Key": "MedicineKHAEN9625772", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Redlich Family Professorship", "CURRENT HOLDER": "Andra L. Blomkalns", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATEG1907773", + "Key": "MedicineKATEG1907773", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The C. F. Rehnborg Professorship", "CURRENT HOLDER": "David J. Maron", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAHZ4270229", + "Key": "MedicineKHAHZ4270229", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Rehnborg Farquhar Professorship", "CURRENT HOLDER": "Christopher Gardner", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUP30280051", + "Key": "MedicineKHAUP30280051", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Reinhard Family Professorship", "CURRENT HOLDER": "Michael Kapiloff", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADS9940883", + "Key": "MedicineKHADS9940883", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Craig Reynolds Professorship in Sleep Medicine", "CURRENT HOLDER": "Emmanuel Mignot", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATDR3126489", + "Key": "MedicineKATDR3126489", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dr. Richard K. and Erika N. Richards Professorship", "CURRENT HOLDER": "Ronald G. Pearl", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPC9630674", + "Key": "MedicineKHAPC9630674", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jeanie and Stew Ritchie Professorship", "CURRENT HOLDER": "Tait Shanafelt", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATID3611902", + "Key": "MedicineKATID3611902", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Howard C. Robbins Professorship in Psychiatry and the Behavioral Sciences", "CURRENT HOLDER": "Allan L. Reiss", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJT3782240", + "Key": "MedicineKHAJT3782240", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Saul A. Rosenberg, MD, Professorship in Lymphoma", "CURRENT HOLDER": "Ranjana Advani", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASG9906868", + "Key": "MedicineKHASG9906868", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Eric Rothenberg, MD, Professorship", "CURRENT HOLDER": "James Lock", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAI9975921", + "Key": "MedicineKHAAI9975921", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Alfred Woodley Salter and Mabel G. Salter Endowed Professorship in Pediatrics", "CURRENT HOLDER": "Daniel Bernstein", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVG5565397", + "Key": "MedicineKHAVG5565397", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Lily Sarafan Endowed Directorship", "CURRENT HOLDER": "Jeffrey Dunn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARQL1852599", + "Key": "MedicineKARQL1852599", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Maslah Saul, MD, Professorship", "CURRENT HOLDER": "Robert S. Fisher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAKS5282229", + "Key": "MedicineKHAKS5282229", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Saunders Family Professorship", "CURRENT HOLDER": "Jongsoo “Jon” Park", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAN2992444", + "Key": "MedicineKHAAN2992444", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Irving Schulman, MD, Professorship in Child Health", "CURRENT HOLDER": "Thomas Robinson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASQ4545067", + "Key": "MedicineKHASQ4545067", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dieter Schwarz Foundation Endowed Professorship", "CURRENT HOLDER": "Lars Steinmetz", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARWZ9622329", + "Key": "MedicineKARWZ9622329", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship", "CURRENT HOLDER": "Teresa Nicolson", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARWW9688396", + "Key": "MedicineKARWW9688396", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship in the School of Medicine", "CURRENT HOLDER": "John B. Sunwoo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAHN5452208", + "Key": "MedicineKAAHN5452208", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship II in the School of Medicine", "CURRENT HOLDER": "Anthony Ricci", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAEW9704459", + "Key": "MedicineKHAEW9704459", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship III in the School of Medicine", "CURRENT HOLDER": "Stefan Heller", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPZ5518202", + "Key": "MedicineKHAPZ5518202", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship IV in the School of Medicine", "CURRENT HOLDER": "Alan G. Cheng", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUN0", + "Key": "MedicineKHAUN0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship V in the School of Medicine", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUO0", + "Key": "MedicineKHAUO0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Edward C. and Amy H. Sewall Professorship VI in the School of Medicine", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOG9686657", + "Key": "MedicineKHAOG9686657", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Dr. Salim and Mrs. Mary Shelby Faculty Scholar", "CURRENT HOLDER": "Marius Wernig", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPW3751286", + "Key": "MedicineKHAPW3751286", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mary and Dr. Salim Shelby Professorship", "CURRENT HOLDER": "William Talbot", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAGR5622269", + "Key": "MedicineKBAGR5622269", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Drs. Ben and A. Jess Shenson Professorship", "CURRENT HOLDER": "Michele Barry", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQVU9659416", + "Key": "MedicineKAQVU9659416", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Norman E. Shumway Professorship", "CURRENT HOLDER": "Joseph Woo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKARXR9891128", + "Key": "MedicineKARXR9891128", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Arnold and Barbara Silverman Professorship in Pediatric Transplantation", "CURRENT HOLDER": "Carlos O. Esquivel", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASN5280027", + "Key": "MedicineKHASN5280027", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John R. and Ai Giak L. Singleton Directorship", "CURRENT HOLDER": "Paul J. Wang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVIY5328694", + "Key": "MedicineKAVIY5328694", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George D. Smith Professorship in Molecular and Genetic Medicine", "CURRENT HOLDER": "Andrew Fire", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJW9658965", + "Key": "MedicineKHAJW9658965", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George D. Smith Professorship in Stem Cell and Regenerative Medicine", "CURRENT HOLDER": "Maria Grazia Roncarolo", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAHO9909748", + "Key": "MedicineKAAHO9909748", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George D. Smith Professorship in Translational Medicine", "CURRENT HOLDER": "Daria Mochly-Rosen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKASBC4236766", + "Key": "MedicineKASBC4236766", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Kathryn Simmons Stamey Professorship", "CURRENT HOLDER": "Joseph Liao", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAGV1902162", + "Key": "MedicineKBAGV1902162", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thomas A. Stamey Research Professorship in Urology", "CURRENT HOLDER": "Eila C. Skinner", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQJ4470845", + "Key": "MedicineKHAQJ4470845", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Basic Science Professorship", "CURRENT HOLDER": "Aaron Gitler", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASV9617061", + "Key": "MedicineKHASV9617061", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Discovery Professorship", "CURRENT HOLDER": "Melissa Bondy", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATI9683201", + "Key": "MedicineKHATI9683201", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Endowed Directorship", "CURRENT HOLDER": "Xiang Qian", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARR5388470", + "Key": "MedicineKHARR5388470", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Faculty Scholar", "CURRENT HOLDER": "Adam de la Zerda", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARS5398060", + "Key": "MedicineKHARS5398060", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Faculty Scholar", "CURRENT HOLDER": "Andrew Huberman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHART5589013", + "Key": "MedicineKHART5589013", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Faculty Scholar", "CURRENT HOLDER": "Nicole M. Martinez", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHARU50021097", + "Key": "MedicineKHARU50021097", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Faculty Scholar", "CURRENT HOLDER": "Florentine Rutaganira", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASW50017910", + "Key": "MedicineKHASW50017910", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Innovation Professorship", "CURRENT HOLDER": "Alyce Adams", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHANQ9643161", + "Key": "MedicineKHANQ9643161", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Pathology Professorship", "CURRENT HOLDER": "Thomas J. Montine", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWN9972019", + "Key": "MedicineKHAWN9972019", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Professorship in Biomedical Informatics Research", "CURRENT HOLDER": "Mark Musen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPV0", + "Key": "MedicineKHAPV0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Professorship in Emergency Medicine", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWO4698890", + "Key": "MedicineKHAWO4698890", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Professorship in Infectious Disease", "CURRENT HOLDER": "Upinder Singh", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXO4049714", + "Key": "MedicineKHAXO4049714", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Professorship in Ophthalmology", "CURRENT HOLDER": "Y. Joyce Liao", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWM5773639", + "Key": "MedicineKHAWM5773639", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Professorship in Pathology", "CURRENT HOLDER": "Stephen Montgomery", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWE3364411", + "Key": "MedicineKHAWE3364411", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Medicine Professorship in Radiology and Biomedical Imaging", "CURRENT HOLDER": "Garry Gold", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOY5368948", + "Key": "MedicineKHAOY5368948", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford Professorship in Food Allergy and Immunology", "CURRENT HOLDER": "Scott Boyd", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATP9605203", + "Key": "MedicineKHATP9605203", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford University Endowed Professorship for Pediatric Inflammatory Bowel Disease and Celiac Disease", "CURRENT HOLDER": "Michael J. Rosen", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVJ0", + "Key": "MedicineKHAVJ0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford University Endowed Professorship for Pediatric Inflammatory Bowel Disease and Celiac Disease II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAGS5568870", + "Key": "MedicineKAAGS5568870", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford University Professorship in Nephrology", "CURRENT HOLDER": "Tara Chang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAQ3796034", + "Key": "MedicineKHAAQ3796034", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stanford University Professorship in Pulmonary and Critical Care Medicine", "CURRENT HOLDER": "Mark Nicolls", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJY9686657", + "Key": "MedicineKHAJY9686657", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Faculty Scholar in Stem Cell Biology", "CURRENT HOLDER": "Marius Wernig", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAYH9707890", + "Key": "MedicineKHAYH9707890", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Stem Cell Institute Directorship", "CURRENT HOLDER": "Ravi Majeti", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAHD5357705", + "Key": "MedicineKBAHD5357705", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Simon H. Stertzer, MD, Professorship", "CURRENT HOLDER": "Joseph C. Wu", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUE0", + "Key": "MedicineKHAUE0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Simon H. Stertzer, MD, Professorship II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASM9615094", + "Key": "MedicineKHASM9615094", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Simon H. Stertzer, MD, Professorship III", "CURRENT HOLDER": "Eldrin F. Lewis", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAUH9595612", + "Key": "MedicineKHAUH9595612", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mark and Mary Stevens Endowed Faculty Scholar", "CURRENT HOLDER": "Allison Betof Warner", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKASAD1260884", + "Key": "MedicineKASAD1260884", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Robert K. and Helen K. Summy Professorship in the School of Medicine", "CURRENT HOLDER": "Ronald Levy", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAAD9613262", + "Key": "MedicineKHAAD9613262", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Philip Sunshine, MD, Endowed Professorship in Neonatology", "CURRENT HOLDER": "Lance Prince", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQN0", + "Key": "MedicineKHAQN0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Distinguished Scholar for Pediatric Immunotherapy", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAQO9683422", + "Key": "MedicineKHAQO9683422", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Distinguished Scholar for Pediatric Oncology", "CURRENT HOLDER": "Charles Gawad", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPM50015254", + "Key": "MedicineKHAPM50015254", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Endowed Clinical Faculty Scholar", "CURRENT HOLDER": "Bradley Aaron Zicherman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPO0", + "Key": "MedicineKHAPO0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Endowed Community Faculty Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAPN9660101", + "Key": "MedicineKHAPN9660101", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Endowed Research Faculty Scholar", "CURRENT HOLDER": "Bonnie Halpern-Felsher", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASE0", + "Key": "MedicineKHASE0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Faculty Scholar in Pediatric Palliative Care", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHASK2760619", + "Key": "MedicineKHASK2760619", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Taube Professorship in Global Health and Infectious Diseases", "CURRENT HOLDER": "Yvonne Aida Maldonado", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAHK34754119", + "Key": "MedicineKBAHK34754119", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Thoracic Surgery Faculty Scholar", "CURRENT HOLDER": "Chuong Hoang", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOT9796590", + "Key": "MedicineKHAOT9796590", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Esther Ting Memorial Professorship", "CURRENT HOLDER": "Keith Humphreys", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJV1852391", + "Key": "MedicineKHAJV1852391", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jared and Mae Tinklenberg Professorship", "CURRENT HOLDER": "Jerome Yesavage", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAVK20585964", + "Key": "MedicineKHAVK20585964", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Wendy J. Tomlin-Hess Endowed Professorship", "CURRENT HOLDER": "Jochen Profit", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAXD4869590", + "Key": "MedicineKHAXD4869590", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Truong-Tan Broadcom Endowed Professorship", "CURRENT HOLDER": "Karen Parker", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAKV4603098", + "Key": "MedicineKHAKV4603098", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John A. Turner, MD, Endowed Professorship for Child and Adolescent Psychiatry", "CURRENT HOLDER": "Victor G. Carrion", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWK50000725", + "Key": "MedicineKHAWK50000725", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Hatim and Durriya Tyabji Endowed Professorship", "CURRENT HOLDER": "Michael J. Gardner", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWQ9607653", + "Key": "MedicineKHAWQ9607653", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John and Marva Warnock Faculty Scholar", "CURRENT HOLDER": "Daniel Delitto", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAWQ5076684", + "Key": "MedicineKHAWQ5076684", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The John and Marva Warnock Faculty Scholar", "CURRENT HOLDER": "Amanda Kirane", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKBAHY9947516", + "Key": "MedicineKBAHY9947516", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Martha Meier Weiland Professorship in the School of Medicine", "CURRENT HOLDER": "Denise M. Monack", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATMQ4570859", + "Key": "MedicineKATMQ4570859", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jack, Lulu, and Sam Willson Professorship", "CURRENT HOLDER": "Maximilian Diehn", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATPQ7947534", + "Key": "MedicineKATPQ7947534", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Jack, Lulu, and Sam Willson Professorship in Medicine", "CURRENT HOLDER": "David Spiegel", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKATOB9726787", + "Key": "MedicineKATOB9726787", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mrs. George A. Winzer Professorship in Cell Biology", "CURRENT HOLDER": "Miriam B. Goodman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAAGV1389857", + "Key": "MedicineKAAGV1389857", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Mrs. George A. Winzer Professorship in Medicine", "CURRENT HOLDER": "Roger Kornberg", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHATV5771626", + "Key": "MedicineKHATV5771626", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Vincent V.C. Woo Professorship", "CURRENT HOLDER": "Leanne Williams", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBALK", + "Key": "MedicineZBALK", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The James Baxter Wood and Yvonne Craig Wood Endowed Directorship of the Pediatric CVICU", "CURRENT HOLDER": "Vamsi Yarlagadda", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAVLD0", + "Key": "MedicineKAVLD0", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The James and Yvonne Wood Professorship in Pulmonary Vascular Medicine", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAJX5621354", + "Key": "MedicineKHAJX5621354", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Woods Family Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Vittorio Sebastiano", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPL9695156", + "Key": "MedicineZBAPL9695156", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Akiko Yamazaki and Jerry Yang Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Irene Loe", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPL5622797", + "Key": "MedicineZBAPL5622797", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Akiko Yamazaki and Jerry Yang Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Avnesh Thakor", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineZBAPL22344642", + "Key": "MedicineZBAPL22344642", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Akiko Yamazaki and Jerry Yang Faculty Scholar in Pediatric Translational Medicine", "CURRENT HOLDER": "Bo Yu", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKAQZJ9735465", + "Key": "MedicineKAQZJ9735465", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Yock Family Professorship", "CURRENT HOLDER": "Joshua Makower", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHAOZ9789041", + "Key": "MedicineKHAOZ9789041", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The Younger Family Professorship", "CURRENT HOLDER": "K. Christopher Garcia", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "MedicineKHADZ7885825", + "Key": "MedicineKHADZ7885825", "SUBCATEGORY": "STANFORD MEDICINE", "POSITION": "The George A. Zimmermann Professorship", "CURRENT HOLDER": "Lawrence Steinman", "WEBSITE": "https://med.stanford.edu/profiles/" }, { - "KEY": "CASBSKABGK9688333", + "Key": "CASBSKABGK9688333", "SUBCATEGORY": "CENTER FOR ADVANCED STUDY IN THE BEHAVIORAL SCIENCES", "POSITION": "The Sara Miller McCune Directorship of CASBS", "CURRENT HOLDER": "Sarah A. Soule", "WEBSITE": "https://casbs.stanford.edu/" }, { - "KEY": "DAPER KMMMJ50007647", + "Key": "DAPER KMMMJ50007647", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Alben Family Assistant Men’s Rowing Coachship", "CURRENT HOLDER": "Niles Garratt", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMML50014802", + "Key": "DAPERKMMML50014802", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Alben Family Associate Head Women’s Rowing Coachship", "CURRENT HOLDER": "Molly Hamrick", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBFAB50000917", + "Key": "DAPERKBFAB50000917", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Anderson Brothers Directorship of Sports Psychology", "CURRENT HOLDER": "Kelli Moran-Miller", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMMY9604036", + "Key": "DAPERKMMMY9604036", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Anonymous Assistant Wrestling Coachship", "CURRENT HOLDER": "Grant Leeth", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKASAO50005891", + "Key": "DAPERKASAO50005891", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Dr. Arthur P. Barnes Director of Band", "CURRENT HOLDER": "Russell Gavin", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKHOOP22869762", + "Key": "DAPERKHOOP22869762", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Harry K. and Ida S. Berland Associate Head Women’s Basketball Coachship", "CURRENT HOLDER": "Tempie Brown", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABLK2505410", + "Key": "DAPERKABLK2505410", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Peter and Helen Bing Directorship of Women’s Tennis", "CURRENT HOLDER": "Lele Forood", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMMH9929597", + "Key": "DAPERKMMMH9929597", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Birkhofer Family Men's Volleyball Head Coachship", "CURRENT HOLDER": "John Kosty", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMOJ50019772", + "Key": "DAPERKMMOJ50019772", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Malin Burnham Assistant Sailing Coachship", "CURRENT HOLDER": "Augie Dale", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMOO6018943", + "Key": "DAPERKMMOO6018943", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Don and Sally Clark Directorship of Leadership and Development", "CURRENT HOLDER": "Jacquelyn Kulgevich", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABME50024847", + "Key": "DAPERKABME50024847", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Couch Family Safeties Coachship", "CURRENT HOLDER": "Bob Gregory", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABYC50029858", + "Key": "DAPERKABYC50029858", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Oscar da Silva Assistant Men’s Basketball Coachship", "CURRENT HOLDER": "Jim Shaw", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABBO50021653", + "Key": "DAPERKABBO50021653", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Dunlevie Family Directorship of Men’s Water Polo", "CURRENT HOLDER": "Brian Flacks", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABBN2973071", + "Key": "DAPERKABBN2973071", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Dunlevie Family Directorship of Women’s Water Polo", "CURRENT HOLDER": "John Tanner", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKAXAA50022496", + "Key": "DAPERKAXAA50022496", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Enlight Foundation Assistant Coachship for Men’s Golf", "CURRENT HOLDER": "Oliver Rubenstein", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMROW50014576", + "Key": "DAPERKMROW50014576", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Farwell Family Directorship of Men’s Rowing", "CURRENT HOLDER": "Ted Sobolewski", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBFBD0", + "Key": "DAPERKBFBD0", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Fortinet Founders Assistant Women's Golf Coachship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKAQVX50024728", + "Key": "DAPERKAQVX50024728", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Bradford M. Freeman Directorship of Football", "CURRENT HOLDER": "Troy Taylor", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABAC3496932", + "Key": "DAPERKABAC3496932", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The James C. Gaither Assistant Coachship of Men’s Basketball", "CURRENT HOLDER": "Eric Reveno", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMND50027914", + "Key": "DAPERKMMND50027914", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Matt Gentry Head Wrestling Coachship", "CURRENT HOLDER": "Chris Ayres", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKSWIM50013677", + "Key": "DAPERKSWIM50013677", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Goldman Family Directorship of Men’s Swimming", "CURRENT HOLDER": "Dan Schemmel", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABJJ50024728", + "Key": "DAPERKABJJ50024728", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Kevin M. Hogan Quarterbacks Coachship", "CURRENT HOLDER": "Troy Taylor", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKAAZG4065223", + "Key": "DAPERKAAZG4065223", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Setsuko Ishiyama Directorship of Women’s Basketball", "CURRENT HOLDER": "Kate Paye", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBAXT9666684", + "Key": "DAPERKBAXT9666684", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Jaquish & Kenninger Directorship of Athletics", "CURRENT HOLDER": "Bernard Muir", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKRACI216848137", + "Key": "DAPERKRACI216848137", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Franklin P. Johnson Directorship of Track and Field", "CURRENT HOLDER": "J. J. Clark", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBFBK50027223", + "Key": "DAPERKBFBK50027223", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Kristina M. Johnson Assistant Field Hockey Coachship", "CURRENT HOLDER": "Craig Haley", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERNSAAC50029634", + "Key": "DAPERNSAAC50029634", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Anne and Tony Joseph Directorship of Men’s Basketball", "CURRENT HOLDER": "Kyle Smith", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBCPZ50023494", + "Key": "DAPERKBCPZ50023494", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Onnie Killefer Assistant Field Hockey Coachship", "CURRENT HOLDER": "Megan Frazer", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBAAA50024747", + "Key": "DAPERKBAAA50024747", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Kissick Family Directorship of Football Sports Performance", "CURRENT HOLDER": "Ryan Deatrick", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKRADH4233102", + "Key": "DAPERKRADH4233102", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Knowles Family Directorship of Men’s Golf", "CURRENT HOLDER": "Conrad Ray", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABNH37394921", + "Key": "DAPERKABNH37394921", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Knowles Family Directorship of Men’s Soccer", "CURRENT HOLDER": "Jeremy Gunn", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABNF5270789", + "Key": "DAPERKABNF5270789", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Knowles Family Directorship of Women’s Soccer", "CURRENT HOLDER": "Paul Ratcliffe", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABIE50024773", + "Key": "DAPERKABIE50024773", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Krishnamurthi Wide Receivers Coachship", "CURRENT HOLDER": "Tyler Osborne", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABBP50024728", + "Key": "DAPERKABBP50024728", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Andrew Luck Directorship of Offense", "CURRENT HOLDER": "Troy Taylor", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKTTTT50007335", + "Key": "DAPERKTTTT50007335", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Jessica Mendoza Associate Head Softball Coachship", "CURRENT HOLDER": "Jessica Merchant", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKCLUB5852329", + "Key": "DAPERKCLUB5852329", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Margot and Mitch Milias Directorship of Women’s Golf", "CURRENT HOLDER": "Anne Walker", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMMU6090794", + "Key": "DAPERKMMMU6090794", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Patricia Miranda Associate Head Wrestling Coachship", "CURRENT HOLDER": "Ryan Deakin", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABWN50005261", + "Key": "DAPERKABWN50005261", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Montag Family Directorship of Women's Volleyball", "CURRENT HOLDER": "Kevin Hambly", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKARPU3388956", + "Key": "DAPERKARPU3388956", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Clarke and Elizabeth Nelson Directorship of Baseball", "CURRENT HOLDER": "David Esquer", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKEJAN5595229", + "Key": "DAPERKEJAN5595229", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Kimberly and Beverly Oden Assistant Volleyball Coachship", "CURRENT HOLDER": "Alex Dunphy", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABYI3641446", + "Key": "DAPERKABYI3641446", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Peiros Family Assistant Women's Basketball Coachship", "CURRENT HOLDER": "Katy Steding", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABYK5861900", + "Key": "DAPERKABYK5861900", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Penner Family Assistant Men's Water Polo Coachship", "CURRENT HOLDER": "Matt Farmer", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABFW5518456", + "Key": "DAPERKABFW5518456", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The James and Martha Poppy Associate Head Coachship of Men’s Tennis", "CURRENT HOLDER": "Brandon Coupe", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMNJ50026985", + "Key": "DAPERKMMNJ50026985", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Al Roderigues Associate Head Men's Volleyball Coachship", "CURRENT HOLDER": "Spencer Wickens", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMNZ5280848", + "Key": "DAPERKMMNZ5280848", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Rodgers Family Directorship of Women's Gymnastics", "CURRENT HOLDER": "Tabitha Yim", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKADEF50024842", + "Key": "DAPERKADEF50024842", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Willie Shaw Directorship of Defense", "CURRENT HOLDER": "Bobby April", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBFBL50004550", + "Key": "DAPERKBFBL50004550", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Marie and Alex Shipman Directorship of Sports Performance and Applied Sports Science", "CURRENT HOLDER": "Tyler Friedrich", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMNP50027174", + "Key": "DAPERKMMNP50027174", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Kawika and Erik Shoji Assistant Men's Volleyball Coachship", "CURRENT HOLDER": "Taylor Hammond", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABFX4311668", + "Key": "DAPERKABFX4311668", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Taube Family Directorship of Men’s Tennis", "CURRENT HOLDER": "Paul H. Goldstein", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKABSZ5227701", + "Key": "DAPERKABSZ5227701", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Tara VanDerveer Assistant Women's Basketball Coachship", "CURRENT HOLDER": "Heather Oesterle", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKASSW5854490", + "Key": "DAPERKASSW5854490", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Paul A. Violich Directorship of Women’s Swimming", "CURRENT HOLDER": "Greg Meehan", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMMB5780537", + "Key": "DAPERKMMMB5780537", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Paul A. Violich Women's Lacrosse Head Coachship", "CURRENT HOLDER": "Danielle Spencer", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBFDC4850053", + "Key": "DAPERKBFDC4850053", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Paul A. Violich Women's Softball Head Coachship", "CURRENT HOLDER": "Jessica Allister", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKMMNY50007121", + "Key": "DAPERKMMNY50007121", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Kathy Wolff Assistant Baseball Coachship", "CURRENT HOLDER": "Thomas Eager", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "DAPERKBFDF50019162", + "Key": "DAPERKBFDF50019162", "SUBCATEGORY": "DEPARTMENT OF ATHLETICS, PHYSICAL EDUCATION, AND RECREATION", "POSITION": "The Ray and Sue York Women's Field Hockey Head Coachship", "CURRENT HOLDER": "Roz Ellis", "WEBSITE": "http://www.gostanford.com/" }, { - "KEY": "FSIKRABT3203916", + "Key": "FSIKRABT3203916", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Endowed Directorship of the Freeman Spogli Institute for International Studies", "CURRENT HOLDER": "Michael A. McFaul", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKAUUO9952474", + "Key": "FSIKAUUO9952474", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Helen C. Farnsworth Professorship in International Agricultural Policy", "CURRENT HOLDER": "Scott D. Rozelle", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKAFSE4670543", + "Key": "FSIKAFSE4670543", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Food Security and the Environment Senior Fellow", "CURRENT HOLDER": "Marshall Burke", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKBAMU9692957", + "Key": "FSIKBAMU9692957", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Freeman Spogli Scholar in International Studies", "CURRENT HOLDER": "Lisa Blaydes", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKBAMU5452673", + "Key": "FSIKBAMU5452673", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Freeman Spogli Scholar in International Studies", "CURRENT HOLDER": "Thomas Mullaney", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKHAZY50007330", + "Key": "FSIKHAZY50007330", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Steven C. Hazy Lecturer", "CURRENT HOLDER": "Colin Kahl", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKAFSF5144732", + "Key": "FSIKAFSF5144732", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Gloria and Richard Kushel Directorship of the Center on Food Security and the Environment", "CURRENT HOLDER": "David Lobell", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKABKI4368650", + "Key": "FSIKABKI4368650", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The James Liang Directorship for the China Program", "CURRENT HOLDER": "Hongbin Li", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKABIZ3283231", + "Key": "FSIKABIZ3283231", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Bernard and Susan Liautaud Visiting Fellow", "CURRENT HOLDER": "Susan E. Rice", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKABJW4186557", + "Key": "FSIKABJW4186557", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Mosbacher Directorship for CDDRL", "CURRENT HOLDER": "Kathryn Stoner", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKMMMC1667765", + "Key": "FSIKMMMC1667765", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Mosbacher Senior Fellow in Global Democracy", "CURRENT HOLDER": "Larry Diamond", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKARLO5708243", + "Key": "FSIKARLO5708243", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Olivier & Nomellini Senior Fellow in International Studies", "CURRENT HOLDER": "Francis Fukuyama", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKABWA0", + "Key": "FSIKABWA0", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Thomas Rohlen Senior Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKABER9920513", + "Key": "FSIKABER9920513", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Stanton Foundation Professorship in Nuclear Security", "CURRENT HOLDER": "Gabrielle Hecht", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKAZEI0", + "Key": "FSIKAZEI0", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Frank Stanton Professorship in Nuclear Security", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKAVKB4371498", + "Key": "FSIKAVKB4371498", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Henri H. and Tomoye Takahashi Professorship in Japanese Studies", "CURRENT HOLDER": "Kiyoteru Tsutsui", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKBATS5144732", + "Key": "FSIKBATS5144732", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The William Wrigley Senior Fellow", "CURRENT HOLDER": "David Lobell", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "FSIKATCY0", + "Key": "FSIKATCY0", "SUBCATEGORY": "FREEMAN SPOGLI INSTITUTE FOR INTERNATIONAL STUDIES", "POSITION": "The Tong Yang, Korea Foundation, and Korea Stanford Alumni Association Chair in Korean Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://fsi.stanford.edu/people/institute-faculty-researchers" }, { - "KEY": "HaasKALRY5400711", + "Key": "HaasKALRY5400711", "SUBCATEGORY": "HAAS CENTER FOR PUBLIC SERVICE", "POSITION": "The Peter E. Haas Directorship", "CURRENT HOLDER": "Juliet Brodie", "WEBSITE": "http://haas.stanford.edu/" }, { - "KEY": "HooverKBBSH9644181", + "Key": "HooverKBBSH9644181", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Fouad and Michelle Ajami Fellow", "CURRENT HOLDER": "H. R. McMaster", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQCJ5851277", + "Key": "HooverKAQCJ5851277", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Rose-Marie and Jack R. Anderson Senior Fellow", "CURRENT HOLDER": "John H. Cochrane", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQNE5934259", + "Key": "HooverKAQNE5934259", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Annenberg Distinguished Visiting Fellow", "CURRENT HOLDER": "James O. Ellis, Jr.", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQNE9863481", + "Key": "HooverKAQNE9863481", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Annenberg Distinguished Visiting Fellow", "CURRENT HOLDER": "James Goodby", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQNE5509865", + "Key": "HooverKAQNE5509865", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Annenberg Distinguished Visiting Fellow", "CURRENT HOLDER": "Adele Hayutin", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQNE5844784", + "Key": "HooverKAQNE5844784", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Annenberg Distinguished Visiting Fellow", "CURRENT HOLDER": "Sam Nunn", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQNE1434604", + "Key": "HooverKAQNE1434604", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Annenberg Distinguished Visiting Fellow", "CURRENT HOLDER": "James Timbie", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAUPE5208775", + "Key": "HooverKAUPE5208775", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The William C. Bark National Fellow", "CURRENT HOLDER": "Kelly Shannon", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAAAH9961517", + "Key": "HooverKAAAH9961517", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Paul H. Bauer Senior Fellow", "CURRENT HOLDER": "Kenneth L. Judd", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBBFS5637085", + "Key": "HooverKBBFS5637085", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Bechtel Directorship of Communications", "CURRENT HOLDER": "Eryn Witcher Tillman", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQCO33935214", + "Key": "HooverKAQCO33935214", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Peter and Kirsten Bedford Senior Fellow", "CURRENT HOLDER": "Richard A. Epstein", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQJR3935020", + "Key": "HooverKAQJR3935020", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The W. Glenn Campbell Research Fellow", "CURRENT HOLDER": "Kiron K. Skinner", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBBFW9787334", + "Key": "HooverKBBFW9787334", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Virginia Hobbs Carpenter Fellow in Journalism", "CURRENT HOLDER": "William “Bill” Whalen", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQMS1667765", + "Key": "HooverKAQMS1667765", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The William L. Clayton Senior Fellow", "CURRENT HOLDER": "Larry Diamond", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKCCAB36222313", + "Key": "HooverKCCAB36222313", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Robert Conquest Curatorship for Russia and Eurasia", "CURRENT HOLDER": "Anatol Shmelev", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAAEE4060018", + "Key": "HooverKAAEE4060018", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Morris Arnold and Nona Jean Cox Senior Fellow", "CURRENT HOLDER": "Amy Zegart", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBBCM5929450", + "Key": "HooverKBBCM5929450", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Davies Family Distinguished Fellow", "CURRENT HOLDER": "General Jim Mattis", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQAF3075637", + "Key": "HooverKAQAF3075637", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Peter and Frances Duignan Visiting Fellow", "CURRENT HOLDER": "Jendayi E. Frazer", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQOB5662905", + "Key": "HooverKAQOB5662905", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Susan Louise Dyer Peace Fellow", "CURRENT HOLDER": "Volha Charnysh", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKALSD50007795", + "Key": "HooverKALSD50007795", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The William C. Edwards Distinguished Visiting Fellow", "CURRENT HOLDER": "George Osborne", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBADS9937814", + "Key": "HooverKBADS9937814", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Leonard and Shirley Ely Senior Fellow", "CURRENT HOLDER": "John F. Cogan", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQWS218164061", + "Key": "HooverKAQWS218164061", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Thomas W. and Susan B. Ford Senior Fellow", "CURRENT HOLDER": "Steven Davis", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAQXW32384182", + "Key": "HooverKAQXW32384182", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Rose and Milton Friedman Senior Fellow on Public Policy", "CURRENT HOLDER": "Thomas Sowell", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverNAAAY9771965", + "Key": "HooverNAAAY9771965", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Paul and Jean Hanna Senior Fellow in Education", "CURRENT HOLDER": "Eric Hanushek", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKARDY3967650", + "Key": "HooverKARDY3967650", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Keith and Jan Hurlbut Senior Fellow", "CURRENT HOLDER": "Daniel P. Kessler", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBAFF0", + "Key": "HooverKBAFF0", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Stella W. and Ira S. Lillick Curatorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBARV7046600", + "Key": "HooverKBARV7046600", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Robert and Carole McNeil Senior Fellow", "CURRENT HOLDER": "Robert E. Hall", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKLSAA3847258", + "Key": "HooverKLSAA3847258", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Rupert Murdoch Research Fellow", "CURRENT HOLDER": "Peter Robinson", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBBUV0", + "Key": "HooverKBBUV0", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Tadahiro Ogawa Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBBFB31237811", + "Key": "HooverKBBFB31237811", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Robert J. and Marion E. Oster Senior Fellow", "CURRENT HOLDER": "Shelby Steele", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKARXX1630854", + "Key": "HooverKARXX1630854", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The George P. Shultz Senior Fellow in Economics", "CURRENT HOLDER": "John B. Taylor", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAVJI0", + "Key": "HooverKAVJI0", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Starr Foundation National Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKASBG50027457", + "Key": "HooverKASBG50027457", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The John Stauffer National Fellow in Public Policy", "CURRENT HOLDER": "Radek Paluszynski", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBARS7396609", + "Key": "HooverKBARS7396609", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Thomas and Barbara Stephenson Senior Fellow on Public Policy", "CURRENT HOLDER": "Condoleezza Rice", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBBEX7396609", + "Key": "HooverKBBEX7396609", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Tad and Dianne Taube Directorship of the Hoover Institution", "CURRENT HOLDER": "Condoleezza Rice", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKAVKI0", + "Key": "HooverKAVKI0", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Edward Teller National Fellow", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBCBY50006752", + "Key": "HooverKBCBY50006752", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Payson J. Treat Distinguished Research Fellow in Contemporary Asia", "CURRENT HOLDER": "Michael R. Auslin", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "HooverKBAHV9825712", + "Key": "HooverKBAHV9825712", "SUBCATEGORY": "HOOVER INSTITUTION", "POSITION": "The Robert Wesson Fellow in Scientific Philosophy and Public Policy", "CURRENT HOLDER": "Scott W. Atlas", "WEBSITE": "http://www.hoover.org/" }, { - "KEY": "VPSAKABWP5710687", + "Key": "VPSAKABWP5710687", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR STUDENT AFFAIRS", "POSITION": "The Counseling and Psychological Services Directorship", "CURRENT HOLDER": "Bina Pulkit Patel", "WEBSITE": "https://studentaffairs.stanford.edu/" }, { - "KEY": "VPSAKABXG5137338", + "Key": "VPSAKABXG5137338", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR STUDENT AFFAIRS", "POSITION": "The Scott J. J. Hsu Directorship for the Asian American Activities Center", "CURRENT HOLDER": "Linda Tran", "WEBSITE": "https://studentaffairs.stanford.edu/" }, { - "KEY": "VPSAKCAKT50012958", + "Key": "VPSAKCAKT50012958", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR STUDENT AFFAIRS", "POSITION": "The Karr Family Directorship for the Black Community Services Center", "CURRENT HOLDER": "Rosalind Conerly", "WEBSITE": "https://studentaffairs.stanford.edu/" }, { - "KEY": "VPSAKBFAT0", + "Key": "VPSAKBFAT0", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR STUDENT AFFAIRS", "POSITION": "The Anonymous Queer Student Resources Directorship", "CURRENT HOLDER": "Ben Davidson", "WEBSITE": "https://studentaffairs.stanford.edu/" }, { - "KEY": "VPUEKAAEY9925876", + "Key": "VPUEKAAEY9925876", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The T. Robert and Katherine States Burke Family Directorship of the Bing Overseas Studies Program", "CURRENT HOLDER": "Aron Rodrigue", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUENAAME5357209", + "Key": "VPUENAAME5357209", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Allen D. Christensen Directorship of Stanford Introductory Studies", "CURRENT HOLDER": "Dan Edelstein", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKAQVY0", + "Key": "VPUEKAQVY0", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Freeman-Thornton Chair for the Vice Provost for Undergraduate Education", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKJYBT5357209", + "Key": "VPUEKJYBT5357209", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Nehal and Jenny Fan Raj Directorship of COLLEGE", "CURRENT HOLDER": "Dan Edelstein", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKJYBJ5850707", + "Key": "VPUEKJYBJ5850707", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Nehal and Jenny Fan Raj College Faculty Fellow", "CURRENT HOLDER": "Ronald Egan", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKJYBO3698206", + "Key": "VPUEKJYBO3698206", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Alex Ramlie College Faculty Fellow", "CURRENT HOLDER": "William P. Barnett", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKJYBO2641298", + "Key": "VPUEKJYBO2641298", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Alex Ramlie College Faculty Fellow", "CURRENT HOLDER": "Christopher B. Field", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKAAMX38298170", + "Key": "VPUEKAAMX38298170", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Spogli Family Overseas Studies Directorship", "CURRENT HOLDER": "Ermelinda Campani", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "VPUEKJYBN9778143", + "Key": "VPUEKJYBN9778143", "SUBCATEGORY": "OFFICE OF THE VICE PROVOST FOR UNDERGRADUATE EDUCATION", "POSITION": "The Tiedtke Family College Faculty Fellow", "CURRENT HOLDER": "Julie Baker", "WEBSITE": "https://undergrad.stanford.edu/about-vpue" }, { - "KEY": "ChEM-HKABNL6000140", + "Key": "ChEM-HKABNL6000140", "SUBCATEGORY": "SARAFAN CHEM-H", "POSITION": "The Baker Family Directorship of Sarafan ChEM-H", "CURRENT HOLDER": "Carolyn R. Bertozzi", "WEBSITE": "https://chemh.stanford.edu/" }, { - "KEY": "ChEM-HKBFCL9608933", + "Key": "ChEM-HKBFCL9608933", "SUBCATEGORY": "SARAFAN CHEM-H", "POSITION": "The Fortinet Founders Professorship", "CURRENT HOLDER": "Paul Mischel", "WEBSITE": "https://chemh.stanford.edu/" }, { - "KEY": "ChEM-HKABWR50016837", + "Key": "ChEM-HKABWR50016837", "SUBCATEGORY": "SARAFAN CHEM-H", "POSITION": "The Krishnan-Shah Family Professorship", "CURRENT HOLDER": "Nathanael S. Gray", "WEBSITE": "https://chemh.stanford.edu/" }, { - "KEY": "ChEM-HKBFAF5247668", + "Key": "ChEM-HKBFAF5247668", "SUBCATEGORY": "SARAFAN CHEM-H", "POSITION": "The Liu (Liao) Family Professorship", "CURRENT HOLDER": "Michael Fischbach", "WEBSITE": "https://chemh.stanford.edu/" }, { - "KEY": "ChEM-HKABLU50008248", + "Key": "ChEM-HKABLU50008248", "SUBCATEGORY": "SARAFAN CHEM-H", "POSITION": "The MAC3 Impact Philanthropies Faculty Fellow", "CURRENT HOLDER": "Laura Dassama", "WEBSITE": "https://chemh.stanford.edu/" }, { - "KEY": "Stanford ArtsKAURW0", + "Key": "Stanford ArtsKAURW0", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Curatorship of Museum Education", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKAAQP5516097", + "Key": "Stanford ArtsKAAQP5516097", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Denning Family Directorship", "CURRENT HOLDER": "Hideo Mabuchi", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKDJTD5878984", + "Key": "Stanford ArtsKDJTD5878984", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Directorship for Academic and Public Engagement", "CURRENT HOLDER": "Christina Linden", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKAUVG23451982", + "Key": "Stanford ArtsKAUVG23451982", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The John and Jill Freidenrich Directorship of the Iris and B. Gerald Cantor Center for Visual Arts", "CURRENT HOLDER": "Veronica Roberts", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKARAB50009366", + "Key": "Stanford ArtsKARAB50009366", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Robert M. and Ruth L. Halperin Curatorship in Modern and Contemporary Art", "CURRENT HOLDER": "Aleesa Pitchamarn Alexander", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKAVDV0", + "Key": "Stanford ArtsKAVDV0", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Maveety Curatorship in Asian Art", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKAAMC0", + "Key": "Stanford ArtsKAAMC0", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Burton and Deedee McMurtry Curatorship, Prints and Drawings", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKBCOZ50029433", + "Key": "Stanford ArtsKBCOZ50029433", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The McMurtry Family Directorship of Stanford Live", "CURRENT HOLDER": "Iris Nemani", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Stanford ArtsKBAHS0", + "Key": "Stanford ArtsKBAHS0", "SUBCATEGORY": "STANFORD ARTS", "POSITION": "The Phyllis Wattis Curatorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://arts.stanford.edu/" }, { - "KEY": "Bio-XKBIOX9971664", + "Key": "Bio-XKBIOX9971664", "SUBCATEGORY": "STANFORD BIO-X", "POSITION": "The Catherine Holman Johnson Directorship of Stanford Bio-X", "CURRENT HOLDER": "Carla J. Shatz", "WEBSITE": "http://biox.stanford.edu/" }, { - "KEY": "Stanford Data ScienceGAMZU5806715", + "Key": "Stanford Data ScienceGAMZU5806715", "SUBCATEGORY": "STANFORD DATA SCIENCE", "POSITION": "The Dieter Schwarz Foundation SDS Faculty Fellow", "CURRENT HOLDER": "Brian Hie", "WEBSITE": "https://datascience.stanford.edu/about/people" }, { - "KEY": "Stanford Data ScienceKBCNS0", + "Key": "Stanford Data ScienceKBCNS0", "SUBCATEGORY": "STANFORD DATA SCIENCE", "POSITION": "The Jane Lauder Professorship in Stanford Data Science", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://datascience.stanford.edu/about/people" }, { - "KEY": "Stanford Data ScienceKABUP6733792", + "Key": "Stanford Data ScienceKABUP6733792", "SUBCATEGORY": "STANFORD DATA SCIENCE", "POSITION": "The Ram and Vijay Shriram Data Science Fellow", "CURRENT HOLDER": "Ambarish Chattopadhyay", "WEBSITE": "https://datascience.stanford.edu/about/people" }, { - "KEY": "Stanford Data ScienceKABUP6187269", + "Key": "Stanford Data ScienceKABUP6187269", "SUBCATEGORY": "STANFORD DATA SCIENCE", "POSITION": "The Ram and Vijay Shriram Data Science Fellow", "CURRENT HOLDER": "Tijana Zrnic", "WEBSITE": "https://datascience.stanford.edu/about/people" }, { - "KEY": "SIEPRKAQNR3541323", + "Key": "SIEPRKAQNR3541323", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Gordon Cain Senior Fellow", "CURRENT HOLDER": "Gregory Rosston", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKABIF5796237", + "Key": "SIEPRKABIF5796237", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Yvette Gurley Research Scholar", "CURRENT HOLDER": "Chenzi Xu", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKASZQ24572224", + "Key": "SIEPRKASZQ24572224", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Ralph Landau Senior Fellow in Economic Growth", "CURRENT HOLDER": "Erik Brynjolfsson", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKAROD3643541", + "Key": "SIEPRKAROD3643541", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Gordon and Betty Moore Senior Fellow", "CURRENT HOLDER": "Peter Klenow", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKABYA5388824", + "Key": "SIEPRKABYA5388824", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The George P. Shultz Faculty Fellow", "CURRENT HOLDER": "Neale Mahoney", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKABUK50007340", + "Key": "SIEPRKABUK50007340", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Tad and Dianne Taube Healthcare Fellow", "CURRENT HOLDER": "Ramin Toloui", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKABAJ6001216", + "Key": "SIEPRKABAJ6001216", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Trione Directorship of SIEPR", "CURRENT HOLDER": "Mark G. Duggan", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKAAUH0", + "Key": "SIEPRKAAUH0", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Trione Visiting Professorship in Economics", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "SIEPRKAAUH0", + "Key": "SIEPRKAAUH0", "SUBCATEGORY": "STANFORD INSTITUTE FOR ECONOMIC POLICY RESEARCH", "POSITION": "The Trione Visiting Professorship in Economics", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://siepr.stanford.edu/people" }, { - "KEY": "HAIKABVU2655330", + "Key": "HAIKABVU2655330", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Denning Co-Directorship of Stanford HAI", "CURRENT HOLDER": "John W. Etchemendy", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "HAIKABVU5998008", + "Key": "HAIKABVU5998008", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Denning Co-Directorship (Acting) of Stanford HAI", "CURRENT HOLDER": "James Landay", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "HAIKABVU4721080", + "Key": "HAIKABVU4721080", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Denning Co-Directorship (On Leave) of Stanford HAI", "CURRENT HOLDER": "Fei-Fei Li", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "HAIKBFBB0", + "Key": "HAIKBFBB0", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Dieter Schwarz Foundation HAI Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "HAIKABUO5794827", + "Key": "HAIKABUO5794827", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Ram and Vijay Shriram HAI Faculty Fellow", "CURRENT HOLDER": "Johannes C. Eichstaedt", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "HAIKABUO50018802", + "Key": "HAIKABUO50018802", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Ram and Vijay Shriram HAI Faculty Fellow", "CURRENT HOLDER": "Hariharan Subramonyam", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "HAIKABXP24572224", + "Key": "HAIKABXP24572224", "SUBCATEGORY": "STANFORD INSTITUTE FOR HUMAN-CENTERED ARTIFICIAL INTELLIGENCE", "POSITION": "The Jerry Yang and Akiko Yamazaki Professorship", "CURRENT HOLDER": "Erik Brynjolfsson", "WEBSITE": "https://hai.stanford.edu/" }, { - "KEY": "KingKABNA0", + "Key": "KingKABNA0", "SUBCATEGORY": "STANFORD KING CENTER ON GLOBAL DEVELOPMENT", "POSITION": "The Noosheen Hashemi Visiting Scholar", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://kingcenter.stanford.edu/" }, { - "KEY": "KingKABMR9675141", + "Key": "KingKABMR9675141", "SUBCATEGORY": "STANFORD KING CENTER ON GLOBAL DEVELOPMENT", "POSITION": "The Peiros Family Faculty Fellow", "CURRENT HOLDER": "Katherine Casey", "WEBSITE": "https://kingcenter.stanford.edu/" }, { - "KEY": "KingKABSD5404714", + "Key": "KingKABSD5404714", "SUBCATEGORY": "STANFORD KING CENTER ON GLOBAL DEVELOPMENT", "POSITION": "The Dong Wei Faculty Fellow", "CURRENT HOLDER": "Grant Miller", "WEBSITE": "https://kingcenter.stanford.edu/" }, { - "KEY": "LibrariesKAQNS9970195", + "Key": "LibrariesKAQNS9970195", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Elwood Cubberley Education Librarianship", "CURRENT HOLDER": "Kathryn M. Kerns", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "LibrariesKAQVS7055486", + "Key": "LibrariesKAQVS7055486", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Frances and Charles Field Curatorship of Special Collections", "CURRENT HOLDER": "Roberto G. Trujillo", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "LibrariesKARAG9904616", + "Key": "LibrariesKARAG9904616", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Ida M. Green University Librarianship", "CURRENT HOLDER": "Michael A. Keller", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "LibrariesKBCEX9937038", + "Key": "LibrariesKBCEX9937038", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Harold C. Hohbach Curatorship", "CURRENT HOLDER": "Henry Lowood", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "LibrariesKARPC0", + "Key": "LibrariesKARPC0", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Dean and Virginia Morrison Curatorship of Social Sciences, Demography, and Population Studies", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "LibrariesKAVGV30836266", + "Key": "LibrariesKAVGV30836266", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Mary R. and Elizabeth K. Raymond Conservationist", "CURRENT HOLDER": "Kristen St. John", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "LibrariesKBAGI50010559", + "Key": "LibrariesKBAGI50010559", "SUBCATEGORY": "STANFORD LIBRARIES", "POSITION": "The Reinhard Family Curatorship of Judaica and Hebraica Collections", "CURRENT HOLDER": "Eitan Kensky", "WEBSITE": "http://library.stanford.edu/" }, { - "KEY": "WoodsKAUVK5202577", + "Key": "WoodsKAUVK5202577", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The Richard and Rhoda Goldman Professorship in Environmental Studies", "CURRENT HOLDER": "Alexandria Boehm", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKAAIL5212064", + "Key": "WoodsKAAIL5212064", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The Higgins-Magid Senior Fellow", "CURRENT HOLDER": "Jenna Davis", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKABAY5055701", + "Key": "WoodsKABAY5055701", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The Kimmelman Faculty Fellow", "CURRENT HOLDER": "William Chueh", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKABAY4125613", + "Key": "WoodsKABAY4125613", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The Kimmelman Family Senior Fellow", "CURRENT HOLDER": "Noah Diffenbaugh", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKRADQ2641298", + "Key": "WoodsKRADQ2641298", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The Perry L. McCarty Directorship of the Woods Institute for the Environment", "CURRENT HOLDER": "Christopher B. Field", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKABIG50014740", + "Key": "WoodsKABIG50014740", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The Lee and Kitty Price Fellow", "CURRENT HOLDER": "Sarah Fletcher", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKAPIF9658069", + "Key": "WoodsKAPIF9658069", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The William and Eva Price Senior Fellow", "CURRENT HOLDER": "Jim Leape", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "WoodsKBATS5144732", + "Key": "WoodsKBATS5144732", "SUBCATEGORY": "STANFORD WOODS INSTITUTE FOR THE ENVIRONMENT", "POSITION": "The William Wrigley Senior Fellow", "CURRENT HOLDER": "David Lobell", "WEBSITE": "https://woods.stanford.edu/people" }, { - "KEY": "NeurosciencesKBCIW0", + "Key": "NeurosciencesKBCIW0", "SUBCATEGORY": "WU TSAI NEUROSCIENCES INSTITUTE", "POSITION": "The James H. Clark Professorship in Neuroscience", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://neuroscience.stanford.edu/" }, { - "KEY": "NeurosciencesKABVL0", + "Key": "NeurosciencesKABVL0", "SUBCATEGORY": "WU TSAI NEUROSCIENCES INSTITUTE", "POSITION": "The Lipschultz Family Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "http://neuroscience.stanford.edu/" }, { - "KEY": "NeurosciencesKABED5165294", + "Key": "NeurosciencesKABED5165294", "SUBCATEGORY": "WU TSAI NEUROSCIENCES INSTITUTE", "POSITION": "The Shooter Family Professorship", "CURRENT HOLDER": "Thomas R. Clandinin", "WEBSITE": "http://neuroscience.stanford.edu/" }, { - "KEY": "NeurosciencesKABVC5573932", + "Key": "NeurosciencesKABVC5573932", "SUBCATEGORY": "WU TSAI NEUROSCIENCES INSTITUTE", "POSITION": "The Bonnie Uytengsu and Family Director of the Stanford Brain Organogenesis Program", "CURRENT HOLDER": "Sergiu P. Pașca", "WEBSITE": "http://neuroscience.stanford.edu/" }, { - "KEY": "NeurosciencesKABDU5311059", + "Key": "NeurosciencesKABDU5311059", "SUBCATEGORY": "WU TSAI NEUROSCIENCES INSTITUTE", "POSITION": "The Vincent V.C. Woo Directorship of the Wu Tsai Neurosciences Institute", "CURRENT HOLDER": "Kang Shen", "WEBSITE": "http://neuroscience.stanford.edu/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKAQAO9870007", + "Key": "University Presidential and Provostial ProfessorshipsKAQAO9870007", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Burt and Marion Avery Professorship in Immunology", "CURRENT HOLDER": "Peter Sarnow", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBAOU0", + "Key": "University Presidential and Provostial ProfessorshipsKBAOU0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Michael and Barbara Berberian Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKAQGX3987112", + "Key": "University Presidential and Provostial ProfessorshipsKAQGX3987112", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Bing Presidential Professorship", "CURRENT HOLDER": "Jonathan D. Levin", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKAQHJ5357365", + "Key": "University Presidential and Provostial ProfessorshipsKAQHJ5357365", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Bing Professorship in Environmental Science", "CURRENT HOLDER": "Rodolfo Dirzo", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBCFY0", + "Key": "University Presidential and Provostial ProfessorshipsKBCFY0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Peter and Helen Bing Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBCFZ0", + "Key": "University Presidential and Provostial ProfessorshipsKBCFZ0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Peter and Helen Bing Professorship II", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsNAAAI5357209", + "Key": "University Presidential and Provostial ProfessorshipsNAAAI5357209", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The William H. Bonsall Professorship in French", "CURRENT HOLDER": "Dan Edelstein", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsNAAAI9972241", + "Key": "University Presidential and Provostial ProfessorshipsNAAAI9972241", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The William H. Bonsall Professorship in History", "CURRENT HOLDER": "Nancy S. Kollmann", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsNAAAI9784240", + "Key": "University Presidential and Provostial ProfessorshipsNAAAI9784240", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The William H. Bonsall Professorship in the Humanities", "CURRENT HOLDER": "Beth Levin", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsNAAAI0", + "Key": "University Presidential and Provostial ProfessorshipsNAAAI0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The William H. Bonsall Professorship in Music", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBCGA0", + "Key": "University Presidential and Provostial ProfessorshipsKBCGA0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Gerhard Casper Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKABBX9893314", + "Key": "University Presidential and Provostial ProfessorshipsKABBX9893314", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Davies Family Provostial Professorship", "CURRENT HOLDER": "Kenneth E. Goodson", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBHU2994242", + "Key": "University Presidential and Provostial ProfessorshipsKBBHU2994242", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Denning Family Provostial Professorship", "CURRENT HOLDER": "Jonathan Berger", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBJW9660877", + "Key": "University Presidential and Provostial ProfessorshipsKBBJW9660877", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Michelle and Kevin Douglas Provostial Professorship", "CURRENT HOLDER": "Robert Jackson", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBTN50003622", + "Key": "University Presidential and Provostial ProfessorshipsKBBTN50003622", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Firmenich Next Generation Faculty Scholar", "CURRENT HOLDER": "Julia Kaltschmidt", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKAQXH0", + "Key": "University Presidential and Provostial ProfessorshipsKAQXH0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Harald Trap Friis Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBBM3225547", + "Key": "University Presidential and Provostial ProfessorshipsKBBBM3225547", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Gabilan Professorship", "CURRENT HOLDER": "Patricia R. Burchat", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBQO9965294", + "Key": "University Presidential and Provostial ProfessorshipsKBBQO9965294", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Harman Family Provostial Professorship", "CURRENT HOLDER": "William “Bill” T. Newsome", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBCFA5160094", + "Key": "University Presidential and Provostial ProfessorshipsKBCFA5160094", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Jensen Huang Professorship in Global Leadership", "CURRENT HOLDER": "Jelena Vuckovic", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKASLU9966557", + "Key": "University Presidential and Provostial ProfessorshipsKASLU9966557", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The IBM Provostial Professorship", "CURRENT HOLDER": "Ellen Markman", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBQU9685215", + "Key": "University Presidential and Provostial ProfessorshipsKBBQU9685215", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The George and Setsuko Ishiyama Provostial Professorship", "CURRENT HOLDER": "Eric Lambin", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBEU0", + "Key": "University Presidential and Provostial ProfessorshipsKBBEU0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Kimmelman Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBAOO217973090", + "Key": "University Presidential and Provostial ProfessorshipsKBAOO217973090", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Martin Luther King, Jr. Centennial Professorship", "CURRENT HOLDER": "Lerone A. Martin", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKAQWO9894460", + "Key": "University Presidential and Provostial ProfessorshipsKAQWO9894460", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Leonardo Professorship", "CURRENT HOLDER": "Friedrich B. Prinz", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBNN5529083", + "Key": "University Presidential and Provostial ProfessorshipsKBBNN5529083", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Linda R. Meier and Joan F. Lane Provostial Professorship", "CURRENT HOLDER": "Abraham Verghese", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKATAA3567252", + "Key": "University Presidential and Provostial ProfessorshipsKATAA3567252", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Paul Pigott Professorship in Physical Sciences", "CURRENT HOLDER": "Zhi-Xun Shen", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBCAV5511366", + "Key": "University Presidential and Provostial ProfessorshipsKBCAV5511366", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Precourt Family Professorship", "CURRENT HOLDER": "Sally M. Benson", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBQY5922629", + "Key": "University Presidential and Provostial ProfessorshipsKBBQY5922629", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Jay Precourt Professorship", "CURRENT HOLDER": "Arun Majumdar", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBEQ9679841", + "Key": "University Presidential and Provostial ProfessorshipsKBBEQ9679841", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Reliance-Dhirubhai Ambani Professorship", "CURRENT HOLDER": "Thomas Blom Hansen", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKACOS5709664", + "Key": "University Presidential and Provostial ProfessorshipsKACOS5709664", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Edward Ricketts Provostial Professorship", "CURRENT HOLDER": "Larry Crowder", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBGA9971664", + "Key": "University Presidential and Provostial ProfessorshipsKBBGA9971664", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Sapp Family Provostial Professorship", "CURRENT HOLDER": "Carla J. Shatz", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBCGP4721080", + "Key": "University Presidential and Provostial ProfessorshipsKBCGP4721080", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Sequoia Capital Professorship", "CURRENT HOLDER": "Fei-Fei Li", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBVS99998940", + "Key": "University Presidential and Provostial ProfessorshipsKBBVS99998940", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Shriram Family Directorship of the Knight-Hennessy Scholars Program", "CURRENT HOLDER": "John L. Hennessy", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBPQ5283391", + "Key": "University Presidential and Provostial ProfessorshipsKBBPQ5283391", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Frederick Emmons Terman Professorship", "CURRENT HOLDER": "Jenny S. Martinez", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBJR9916834", + "Key": "University Presidential and Provostial ProfessorshipsKBBJR9916834", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Carl and Marilynn Thoma Provostial Professorship in the Arts and Humanities", "CURRENT HOLDER": "Alexander Nemerov", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKASKL5254330", + "Key": "University Presidential and Provostial ProfessorshipsKASKL5254330", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The UPS Foundation Professorship", "CURRENT HOLDER": "Sarah Billington", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBTX50004905", + "Key": "University Presidential and Provostial ProfessorshipsKBBTX50004905", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Wallenberg-Bienenstock Professorship", "CURRENT HOLDER": "Wah Chiu", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKAUMU0", + "Key": "University Presidential and Provostial ProfessorshipsKAUMU0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Howard H. and Jessie T. Watkins University Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "University Presidential and Provostial ProfessorshipsKBBPR0", + "Key": "University Presidential and Provostial ProfessorshipsKBBPR0", "SUBCATEGORY": "UNIVERSITY, PRESIDENTIAL, AND PROVOSTIAL PROFESSORSHIPS", "POSITION": "The Howard H. and Jessie T. Watkins University Professorship", "CURRENT HOLDER": "To Be Named", "WEBSITE": "https://giving.stanford.edu/endowed-positions/" }, { - "KEY": "The Bass University FellowsKBBEI5452191", + "Key": "The Bass University FellowsKBBEI5452191", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Gregory Amadon Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Risa Wechsler", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBBCA1667765", + "Key": "The Bass University FellowsKBBCA1667765", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Anonymous Friends University Fellow in Undergraduate Education", "CURRENT HOLDER": "Larry Diamond", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAQYD9945627", + "Key": "The Bass University FellowsKAQYD9945627", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Gerhard Casper University Fellow in Undergraduate Education", "CURRENT HOLDER": "Lynn Hildemann", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAZF9900531", + "Key": "The Bass University FellowsKBAZF9900531", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Paul Davies Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Thomas W. Kenny", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAEH4286985", + "Key": "The Bass University FellowsKAAEH4286985", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Duca Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Allison Okamura", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAQMW3131794", + "Key": "The Bass University FellowsKAQMW3131794", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Dunlevie Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Paul G. Fisher", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKASPJ9775339", + "Key": "The Bass University FellowsKASPJ9775339", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Barbara D. Finberg University Fellow in Undergraduate Education", "CURRENT HOLDER": "Zephyr Frank", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAYT9941857", + "Key": "The Bass University FellowsKBAYT9941857", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Bert and Candace Forbes University Fellow in Undergraduate Education", "CURRENT HOLDER": "Mark Cappelli", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAUVF5568619", + "Key": "The Bass University FellowsKAUVF5568619", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Thomas W. and Susan B. Ford University Fellow in Undergraduate Education", "CURRENT HOLDER": "Adrian Daub", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBBBH4497939", + "Key": "The Bass University FellowsKBBBH4497939", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Michael Forman University Fellow in Undergraduate Education", "CURRENT HOLDER": "Gregory M. Walton", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAIS7103195", + "Key": "The Bass University FellowsKAAIS7103195", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The John A. and Cynthia Fry Gunn University Fellow in Undergraduate Education", "CURRENT HOLDER": "Ross Shachter", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAZT5212064", + "Key": "The Bass University FellowsKBAZT5212064", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Mimi and Peter Haas University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jenna Davis", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAJV5568771", + "Key": "The Bass University FellowsKAAJV5568771", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Robert and Ruth Halperin University Fellow in Undergraduate Education", "CURRENT HOLDER": "Tomás Jiménez", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAADE3870938", + "Key": "The Bass University FellowsKAADE", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Rachford and Carlota A. Harris University Fellow in Undergraduate Education", - "CURRENT HOLDER": "Stephen M. Sano", + "CURRENT HOLDER": "Kathryn Gin Lum", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBBET9648441", + "Key": "The Bass University FellowsKBBET9648441", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Hazy Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Adam Banks", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAKX3742640", + "Key": "The Bass University FellowsKAAKX3742640", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Yumi and Yasunori Kaneko Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jeanne L. Tsai", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsNAAVU5569846", + "Key": "The Bass University FellowsNAAVU5569846", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The William and Dorothy Kaye University Fellow in Undergraduate Education", "CURRENT HOLDER": "Haiyan Lee", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAFA5000001", + "Key": "The Bass University FellowsKBAFA5000001", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The William R. and Gretchen B. Kimball University Fellow in Undergraduate Education", "CURRENT HOLDER": "Sarah Heilshorn", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKARJH5517974", + "Key": "The Bass University FellowsKARJH5517974", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Kleinheinz Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Allyson Hobbs", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAVBO35040971", + "Key": "The Bass University FellowsKAVBO35040971", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Landreth Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Michael R. Tomz", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAFM9689284", + "Key": "The Bass University FellowsKBAFM9689284", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Martin Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Drew Endy", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKATAH5570011", + "Key": "The Bass University FellowsKATAH5570011", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Barbara and Buzz McCoy University Fellow in Undergraduate Education", "CURRENT HOLDER": "Nicole Ardoin", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKATCD9867904", + "Key": "The Bass University FellowsKATCD9867904", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Burton J. and Deedee McMurtry University Fellow in Undergraduate Education", "CURRENT HOLDER": "Paula M. L. Moya", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAGW2045201", + "Key": "The Bass University FellowsKAAGW2045201", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Milligan Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Carl Wieman", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAKY5517874", + "Key": "The Bass University FellowsKAAKY9825241", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The John and Lydia Pearce Mitchell University Fellow in Undergraduate Education", - "CURRENT HOLDER": "Caroline M. Hoxby", + "CURRENT HOLDER": "Gabriella Safran", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAHE4125613", + "Key": "The Bass University FellowsKAAHE4125613", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Olivier & Nomellini Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Noah Diffenbaugh", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAALK5849523", + "Key": "The Bass University FellowsKAALK5849523", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Robert K. Packard University Fellow in Undergraduate Education", "CURRENT HOLDER": "Elaine Treharne", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAIF0", + "Key": "The Bass University FellowsKAAIF5400711", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Pritzker University Fellow in Undergraduate Education", - "CURRENT HOLDER": "To Be Named", + "CURRENT HOLDER": "Juliet Brodie", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKATKD9826165", + "Key": "The Bass University FellowsKATKD9863358", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Eleanor Loring Ritch University Fellow in Undergraduate Education", - "CURRENT HOLDER": "Nicholas Jenkins", + "CURRENT HOLDER": "Joshua Landy", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAZS5452781", + "Key": "The Bass University FellowsKBAZS5452781", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Louise and Claude Rosenberg, Jr. University Fellow in Undergraduate Education", "CURRENT HOLDER": "Grant Parker", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsNAAVR9925876", + "Key": "The Bass University FellowsNAAVR9925876", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The John Henry Samter University Fellow in Undergraduate Education", "CURRENT HOLDER": "Aron Rodrigue", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAZU3494200", + "Key": "The Bass University FellowsKBAZU5357365", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Sapp Family University Fellow in Undergraduate Education", - "CURRENT HOLDER": "Kathryn A. Moler", + "CURRENT HOLDER": "Rodolfo Dirzo", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAALB5452099", + "Key": "The Bass University FellowsKAALB5452099", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The W. Warren Shelden University Fellow in Undergraduate Education", "CURRENT HOLDER": "Lisa Surwillo", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBBEL1722719", + "Key": "The Bass University FellowsKBBEL1722719", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Stanford Alumni University Fellow in Undergraduate Education", "CURRENT HOLDER": "Gordon Chang", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAAHJ5164078", + "Key": "The Bass University FellowsKAAHJ5164078", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Stanford Friends University Fellow in Undergraduate Education", "CURRENT HOLDER": "Mary Beth Mudgett", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAZV9645516", + "Key": "The Bass University FellowsKBAZV9645516", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The William and Lynda Steere University Fellow in Undergraduate Education", "CURRENT HOLDER": "Dustin Schroeder", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBBBK5202577", + "Key": "The Bass University FellowsKBBBK5202577", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Sugden Family University Fellow in Undergraduate Education", "CURRENT HOLDER": "Alexandria Boehm", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBAZW3601630", + "Key": "The Bass University FellowsKBAZW3601630", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Oswald G. Villard University Fellow in Undergraduate Education", "CURRENT HOLDER": "Barbara Voss", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAALQ5561130", + "Key": "The Bass University FellowsKAALQ5561130", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The J. Frederick and Elisabeth Brewer Weintz University Fellow in Undergraduate Education", "CURRENT HOLDER": "James T. Hamilton", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKAADC5075365", + "Key": "The Bass University FellowsKAADC5075365", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Akiko Yamazaki and Jerry Yang University Fellow in Undergraduate Education", "CURRENT HOLDER": "Michael Bernstein", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University FellowsKBBCY9842824", + "Key": "The Bass University FellowsKBBCY9842824", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "The Mr. and Mrs. Frank W. Yeung University Fellow in Undergraduate Education", "CURRENT HOLDER": "Elizabeth A. Hadly", "WEBSITE": "https://vpuefacstaff.stanford.edu/recognition/bass-university-fellows" }, { - "KEY": "The Bass University Fellows - EmeritiBASS0", + "Key": "The Bass University Fellows - EmeritiBASS0", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9867847", + "Key": "The Bass University Fellows - EmeritiBASS9867847", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "R. Lanier Anderson", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9769688", + "Key": "The Bass University Fellows - EmeritiBASS9769688", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Mark S. Applebaum", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9785932", + "Key": "The Bass University Fellows - EmeritiBASS9785932", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Kevin R. Arrigo", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1346048", + "Key": "The Bass University Fellows - EmeritiBASS1346048", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "David W. Beach", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3750288", + "Key": "The Bass University Fellows - EmeritiBASS3750288", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Stacey F. Bent", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS2994242", + "Key": "The Bass University Fellows - EmeritiBASS2994242", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jonathan Berger", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9972191", + "Key": "The Bass University Fellows - EmeritiBASS9972191", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Russell A. Berman", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9876400", + "Key": "The Bass University Fellows - EmeritiBASS9876400", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Elizabeth B. Bernhardt", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS5254330", + "Key": "The Bass University Fellows - EmeritiBASS5254330", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Sarah L. Billington", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9923806", + "Key": "The Bass University Fellows - EmeritiBASS9923806", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Coit D. Blacker", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9868159", + "Key": "The Bass University Fellows - EmeritiBASS9868159", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Christopher J. Bobonich", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9939398", + "Key": "The Bass University Fellows - EmeritiBASS9939398", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Carol Boggs", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7093305", + "Key": "The Bass University Fellows - EmeritiBASS7093305", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "John C. Boothroyd", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9853672", + "Key": "The Bass University Fellows - EmeritiBASS9853672", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Donna M. Bouley", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9936238", + "Key": "The Bass University Fellows - EmeritiBASS9936238", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Philippe Buc", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3225547", + "Key": "The Bass University Fellows - EmeritiBASS3225547", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Patricia R. Burchat", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS99987752", + "Key": "The Bass University Fellows - EmeritiBASS99987752", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Thomas H. Byers", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3215936", + "Key": "The Bass University Fellows - EmeritiBASS3215936", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "James T. Campbell", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9962515", + "Key": "The Bass University Fellows - EmeritiBASS9962515", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Carolyn Lougee Chappell", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9962390", + "Key": "The Bass University Fellows - EmeritiBASS9791724", + "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", + "POSITION": "Continuing Bass University Fellow in Undergraduate Education", + "CURRENT HOLDER": "Sarah Church", + "WEBSITE": "" + }, + { + "Key": "The Bass University Fellows - EmeritiBASS9962390", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Ralph L. Cohen", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9917147", + "Key": "The Bass University Fellows - EmeritiBASS9917147", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Martha S. Cyert", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3288925", + "Key": "The Bass University Fellows - EmeritiBASS3288925", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Gretchen C. Daily", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9787599", + "Key": "The Bass University Fellows - EmeritiBASS9787599", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Justin Du Bois", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9852252", + "Key": "The Bass University Fellows - EmeritiBASS9852252", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Robert B. Dunbar", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1479120", + "Key": "The Bass University Fellows - EmeritiBASS1479120", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "William H. Durham", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9942012", + "Key": "The Bass University Fellows - EmeritiBASS9942012", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Robert W. Dutton", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1909241", + "Key": "The Bass University Fellows - EmeritiBASS1909241", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "John K. Eaton", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS5357209", + "Key": "The Bass University Fellows - EmeritiBASS5357209", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Dan Edelstein", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9875451", + "Key": "The Bass University Fellows - EmeritiBASS9875451", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Christopher F. Edwards", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9932575", + "Key": "The Bass University Fellows - EmeritiBASS9932575", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Harry J. Elam, Jr.", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS5281506", + "Key": "The Bass University Fellows - EmeritiBASS5281506", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Michele Elam", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9929530", + "Key": "The Bass University Fellows - EmeritiBASS9929530", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Russell D. Fernald", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS2560233", + "Key": "The Bass University Fellows - EmeritiBASS2560233", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "David L. Freyberg", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3188406", + "Key": "The Bass University Fellows - EmeritiBASS3188406", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Gabriel Garcia", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7130149", + "Key": "The Bass University Fellows - EmeritiBASS7130149", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Hester G. Gelber", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9820622", + "Key": "The Bass University Fellows - EmeritiBASS9820622", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "J. Christian Gerdes", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS4080420", + "Key": "The Bass University Fellows - EmeritiBASS4080420", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Margot Gerritsen", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9969932", + "Key": "The Bass University Fellows - EmeritiBASS9969932", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Judith L. Goldstein", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9896648", + "Key": "The Bass University Fellows - EmeritiBASS9896648", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "James J. Gross", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7954506", + "Key": "The Bass University Fellows - EmeritiBASS7954506", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "H. Craig Heller", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9833310", + "Key": "The Bass University Fellows - EmeritiBASS9833310", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Susan P. Holmes", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9975913", + "Key": "The Bass University Fellows - EmeritiBASS5517874", + "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", + "POSITION": "Continuing Bass University Fellow in Undergraduate Education", + "CURRENT HOLDER": "Caroline M. Hoxby", + "WEBSITE": "" + }, + { + "Key": "The Bass University Fellows - EmeritiBASS9826165", + "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", + "POSITION": "Continuing Bass University Fellow in Undergraduate Education", + "CURRENT HOLDER": "Nicholas Jenkins", + "WEBSITE": "" + }, + { + "Key": "The Bass University Fellows - EmeritiBASS9975913", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Patricia P. Jones", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1417146", + "Key": "The Bass University Fellows - EmeritiBASS1417146", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Terry L. Karl", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1073006", + "Key": "The Bass University Fellows - EmeritiBASS1073006", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "David M. Kennedy", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3645777", + "Key": "The Bass University Fellows - EmeritiBASS3645777", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Julie Kennedy", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3870573", + "Key": "The Bass University Fellows - EmeritiBASS3870573", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Daphne Koller", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS2758902", + "Key": "The Bass University Fellows - EmeritiBASS2758902", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jeffrey R. Koseff", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9830647", + "Key": "The Bass University Fellows - EmeritiBASS9830647", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Andrea A. Lunsford", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9852245", + "Key": "The Bass University Fellows - EmeritiBASS9852245", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Pamela A. Matson", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9967381", + "Key": "The Bass University Fellows - EmeritiBASS9967381", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jody Maxmin", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9953134", + "Key": "The Bass University Fellows - EmeritiBASS9953134", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Rafe Mazzeo", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9938655", + "Key": "The Bass University Fellows - EmeritiBASS9938655", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Susan K. McConnell", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9852690", + "Key": "The Bass University Fellows - EmeritiBASS3494200", + "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", + "POSITION": "Continuing Bass University Fellow in Undergraduate Education", + "CURRENT HOLDER": "Kathryn A. Moler", + "WEBSITE": "" + }, + { + "Key": "The Bass University Fellows - EmeritiBASS9852690", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jean C. Oi", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9967837", + "Key": "The Bass University Fellows - EmeritiBASS9967837", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Brad G. Osgood", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9938101", + "Key": "The Bass University Fellows - EmeritiBASS9938101", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Douglas Osheroff", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS4298568", + "Key": "The Bass University Fellows - EmeritiBASS4298568", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Rob Reich", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7400294", + "Key": "The Bass University Fellows - EmeritiBASS7400294", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "John R. Rickford", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7005754", + "Key": "The Bass University Fellows - EmeritiBASS7005754", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Eric Roberts", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1371566", + "Key": "The Bass University Fellows - EmeritiBASS1371566", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Channing R. Robertson", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS1318757", + "Key": "The Bass University Fellows - EmeritiBASS1318757", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Orrin W. \"Rob\" Robinson", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9962697", + "Key": "The Bass University Fellows - EmeritiBASS9962697", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Scott D. Sagan", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS3824760", + "Key": "The Bass University Fellows - EmeritiBASS3824760", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Mehran Sahami", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9924440", + "Key": "The Bass University Fellows - EmeritiBASS9924440", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Ramón Saldívar", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9970997", + "Key": "The Bass University Fellows - EmeritiBASS3870938", + "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", + "POSITION": "Continuing Bass University Fellow in Undergraduate Education", + "CURRENT HOLDER": "Stephen M. Sano", + "WEBSITE": "" + }, + { + "Key": "The Bass University Fellows - EmeritiBASS9970997", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Debra M. Satz", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS909960", + "Key": "The Bass University Fellows - EmeritiBASS909960", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "James J. Sheehan", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9961673", + "Key": "The Bass University Fellows - EmeritiBASS9961673", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Sheri D. Sheppard", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9992983", + "Key": "The Bass University Fellows - EmeritiBASS9992983", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "John B. Shoven", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9934415", + "Key": "The Bass University Fellows - EmeritiBASS9934415", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Robert D. Simoni", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7332075", + "Key": "The Bass University Fellows - EmeritiBASS7332075", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jonathan F. Stebbins", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9879446", + "Key": "The Bass University Fellows - EmeritiBASS9879446", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Jennifer Summit", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9962101", + "Key": "The Bass University Fellows - EmeritiBASS9962101", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Ewart A. Thomas", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS5249944", + "Key": "The Bass University Fellows - EmeritiBASS5249944", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Frederick Turner", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9749367", + "Key": "The Bass University Fellows - EmeritiBASS9749367", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Ravi Vakil", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9941618", + "Key": "The Bass University Fellows - EmeritiBASS9941618", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Peter M. Vitousek", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS7302722", + "Key": "The Bass University Fellows - EmeritiBASS7302722", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Tom Wasow", "WEBSITE": "" }, { - "KEY": "The Bass University Fellows - EmeritiBASS9972985", + "Key": "The Bass University Fellows - EmeritiBASS9972985", "SUBCATEGORY": "BASS UNIVERSITY FELLOWS IN UNDERGRADUATE EDUCATION PROGRAM", "POSITION": "Continuing Bass University Fellow in Undergraduate Education", "CURRENT HOLDER": "Robert M. Waymouth",